////
/// Server Standalone Scheme
/// @group server
////

@use 'src/module/color';

body {
  @include color.background(alt blue-france, (standalone: true));
}

a {
  outline-color: color.$focus;
}

#{ns(btn)} {
  &--tertiary {
    @include color.background(alt grey, (standalone: true, hover: true));
    @include color.box-shadow(default grey, (standalone: true), all-1-in);
    @include color.text(action-high blue-france, (standalone: true));
  }

  svg {
    @include color.fill(text action-high blue-france, (standalone: true));
  }
}
