Skip to content

Commit

Permalink
darker versions of colors relative to brand colors
Browse files Browse the repository at this point in the history
  • Loading branch information
stacyk committed Sep 17, 2024
1 parent 661dfef commit 93a4f1a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions source/assets/sass/config/color/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,11 @@ $sl-color--warn: #c14e00;
$sl-color--success: #168073;

// Darker Shades of existing colors for use on a light gray background
$sl-color--text-medium-dark: #5e6470; // darker version of pale-sky
$sl-color--action-dark: #a12d69; // darker version of action
$sl-color--text-medium-dark: color.adjust(
brand.$sl-color--pale-sky,
$lightness: -5%
);
$sl-color--action-dark: color.adjust(
brand.$sl-color--bouquet,
$lightness: -11.647%
);

0 comments on commit 93a4f1a

Please sign in to comment.