Skip to content

Commit

Permalink
Update light vs dark styles
Browse files Browse the repository at this point in the history
  • Loading branch information
MathyouMB committed Jun 29, 2024
1 parent fb71433 commit b774f17
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/layouts/Base/Base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ a {
"Helvetica Neue", Helvetica, Arial, sans-serif;

/* color-scheme: light dark; */
background-color: var(--color-background);
color: var(--color-foreground);
// background-color: #1f2023; // var(--color-background);
// color: #1f2023; //var(--color-foreground);

--color-background: #ffffff;
--color-foreground: #1f2023;
--color-accent: #5c6ac4;
// --color-background: #ffffff;
// --color-foreground: #1f2023;
// --color-accent: #5c6ac4;
}

@media (prefers-color-scheme: light) {
:root {
--color-background: #1f2023;
--color-foreground: #ffffff;
}
}
// @media (prefers-color-scheme: light) {
// :root {
// --color-background: #1f2023;
// --color-foreground: #ffffff;
// }
// }

0 comments on commit b774f17

Please sign in to comment.