Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 05ea5c5

Browse files
committed
feat: readded overlay inverse back to css variables
1 parent c3a8a22 commit 05ea5c5

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

MIGRATION.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ In this version, significant updates have been made to color tokens, including m
3434
#### CSS Variables
3535

3636
```
37-
--color-overlay-inverse removed
3837
--color-primary-shadow modified to --color-shadow-primary
3938
--color-primary-disabled removed
4039
--color-secondary-default removed

src/css/dark-theme-colors.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
--color-overlay-default: #00000099;
3939
/* For a stronger shade of screen */
4040
--color-overlay-alternative: #000000cc;
41+
/* For elements used on top of overlay/alternative. Used for text, icon or border */
42+
--color-overlay-inverse: var(--brand-colors-grey-grey000);
4143
/* For interactive, active, and selected semantics. Used for text, background, icon or border */
4244
--color-primary-default: var(--brand-colors-blue-blue300);
4345
/* For the stronger contrast primary semantic elements. */

src/css/light-theme-colors.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
3939
--color-overlay-default: #00000099;
4040
/* For a stronger shade of screen */
4141
--color-overlay-alternative: #000000cc;
42+
/* For elements used on top of overlay/alternative. Used for text, icon or border */
43+
--color-overlay-inverse: var(--brand-colors-grey-grey000);
4244
/* For interactive, active, and selected semantics. Used for text, background, icon or border */
4345
--color-primary-default: var(--brand-colors-blue-blue500);
4446
/* For the stronger contrast primary semantic elements. */

0 commit comments

Comments
 (0)