Skip to content

Commit

Permalink
fix: move data attribute to light theme variables (#631)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall authored Feb 21, 2024
1 parent 200ec52 commit 5ac0846
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/css/design-tokens.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
* theme compatible styles
*/

:root,
[data-theme='light'] {
:root {
--brand-colors-white-white000: #ffffff;
--brand-colors-white-white010: #fcfcfc;
--brand-colors-black-black000: #000000;
Expand Down Expand Up @@ -272,7 +271,8 @@
* This will insure theme compatibility
*/

:root {
:root,
[data-theme='light'] {
--color-background-default: var(--brand-colors-white-white000);
--color-background-default-hover: #fafafa;
--color-background-default-pressed: #ebebeb;
Expand Down

0 comments on commit 5ac0846

Please sign in to comment.