Skip to content

Commit

Permalink
Feat(web): Add brand colors to text and background utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
crishpeen committed Oct 24, 2022
1 parent 565c032 commit 95b676f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/web/src/scss/settings/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,23 @@ $utilities: (
responsive: false,
property: color,
class: text,
values: tokens.$text-colors,
values:
map.merge(
tokens.$text-colors,
(
brand-primary: tokens.$brand-primary,
brand-secondary: tokens.$brand-secondary,
)
),
),
'background-color': (
responsive: false,
property: background-color,
class: bg,
values: (
basic: tokens.$background-basic,
brand-primary: tokens.$brand-primary,
brand-secondary: tokens.$brand-secondary,
cover: tokens.$background-cover,
inverted: tokens.$background-inverted,
),
Expand Down

0 comments on commit 95b676f

Please sign in to comment.