Skip to content

Commit

Permalink
Merge pull request #9 from code-star/main
Browse files Browse the repository at this point in the history
fix: force dark theme
  • Loading branch information
mdvanes committed Dec 7, 2023
2 parents ea1249e + 0848197 commit 059ff3b
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


html,
body {
padding: 0;
Expand All @@ -17,13 +15,13 @@ a {
box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
--cs-bg-color: #00254b;
color: rgb(205, 205, 205);
background: var(--cs-bg-color);
}
/* @media (prefers-color-scheme: dark) { */
html {
color-scheme: dark;
}
body {
--cs-bg-color: #00254b;
color: rgb(205, 205, 205);
background: var(--cs-bg-color);
}
/* } */

0 comments on commit 059ff3b

Please sign in to comment.