Skip to content

Commit

Permalink
feat(styling): adds new color variable
Browse files Browse the repository at this point in the history
  • Loading branch information
asewilhelmsen committed Jul 13, 2023
1 parent 11c9316 commit 536b5de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.overviewWrapper {
display: flex;
flex-direction: column;
background-color: var(--table-border-color);
background-color: var(--tertiary-background-color);
border-radius: 0.5em;
padding: 1em;
width: 50em;
Expand Down
1 change: 1 addition & 0 deletions next-tavla/src/Shared/styles/themes/dark.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[data-theme='dark'] {
--main-background-color: var(--colors-misc-black);
--secondary-background-color: var(--colors-greys-grey);
/* --tertiary-background-color */

--table-border-color: var(--colors-greys-grey10);
--table-situation-color: var(--colors-validation-canary);
Expand Down
1 change: 1 addition & 0 deletions next-tavla/src/Shared/styles/themes/default.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
:root {
--main-background-color: var(--colors-brand-blue);
--secondary-background-color: var(--colors-blues-blue10);
--tertiary-background-color: var(--colors-blues-blue30);
--main-text-color: var(--colors-brand-white);

--primary-button-color: var(--colors-data-contrast-lavender);
Expand Down
1 change: 1 addition & 0 deletions next-tavla/src/Shared/styles/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
--main-background-color: var(--colors-brand-white);

--secondary-background-color: var(--colors-greys-grey80);
/* --tertiary-background-color */
--main-text-color: var(--colors-misc-black);

--primary-button-color: var(--colors-brand-blue);
Expand Down

0 comments on commit 536b5de

Please sign in to comment.