.gui-pseudo-border-blue-2px {
  @include after-border(
    2px,
    solid,
    theme('colors.blue.primary'),
    theme('borderRadius.DEFAULT')
  );
}

.gui-pseudo-border-blue-2px-no-border-radius-on-focus {
  @include after-border-focussed(2px, solid, theme('colors.blue.primary'), 0);
}

.gui-pseudo-left-border-blue-2px {
  @include before-left-border(2px, solid, theme('colors.blue.primary'));
}

.gui-pseudo-border-red-2px {
  @include before-border(
    2px,
    solid,
    theme('colors.red.primary'),
    theme('borderRadius.DEFAULT')
  );
}

.gui-pseudo-border-grey-1px {
  @include before-border(
    1px,
    solid,
    theme('colors.neutral.90'),
    theme('borderRadius.DEFAULT')
  );
}
