Skip to content

Commit

Permalink
feat: readded overlay inverse back to css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
brianacnguyen committed May 30, 2024
1 parent c3a8a22 commit 05ea5c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ In this version, significant updates have been made to color tokens, including m
#### CSS Variables

```
--color-overlay-inverse removed
--color-primary-shadow modified to --color-shadow-primary
--color-primary-disabled removed
--color-secondary-default removed
Expand Down
2 changes: 2 additions & 0 deletions src/css/dark-theme-colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
--color-overlay-default: #00000099;
/* For a stronger shade of screen */
--color-overlay-alternative: #000000cc;
/* For elements used on top of overlay/alternative. Used for text, icon or border */
--color-overlay-inverse: var(--brand-colors-grey-grey000);
/* For interactive, active, and selected semantics. Used for text, background, icon or border */
--color-primary-default: var(--brand-colors-blue-blue300);
/* For the stronger contrast primary semantic elements. */
Expand Down
2 changes: 2 additions & 0 deletions src/css/light-theme-colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
--color-overlay-default: #00000099;
/* For a stronger shade of screen */
--color-overlay-alternative: #000000cc;
/* For elements used on top of overlay/alternative. Used for text, icon or border */
--color-overlay-inverse: var(--brand-colors-grey-grey000);
/* For interactive, active, and selected semantics. Used for text, background, icon or border */
--color-primary-default: var(--brand-colors-blue-blue500);
/* For the stronger contrast primary semantic elements. */
Expand Down

0 comments on commit 05ea5c5

Please sign in to comment.