Skip to content

Commit

Permalink
fix(labels): increase contrast (#1065)
Browse files Browse the repository at this point in the history
  • Loading branch information
dancormier committed Aug 22, 2022
1 parent 391c422 commit 0b459fc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/css/components/labels.less
Expand Up @@ -63,16 +63,22 @@

&.s-label--status__required {
--_bg: var(--red-100);
--_fc: var(--red-600);
--_fc: var(--red-700);

.dark-mode({
--_bg: var(--red-050);
--_fc: var(--red-800);
});
}

&.s-label--status__new {
--_bg: var(--green-100);
--_fc: var(--green-700);

.dark-mode({
--_bg: var(--green-050);
--_fc: var(--green-800);
});
}

&.s-label--status__beta {
Expand Down

0 comments on commit 0b459fc

Please sign in to comment.