Skip to content

Commit

Permalink
fix colors so green is high
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Feb 8, 2024
1 parent de5aedf commit 058871b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions static/style.css
@@ -1,20 +1,20 @@
@media(prefers-color-scheme: light) {
:root {
--primary: #16171F;
--deemphasized: #6E7189;
--verydim: #EEEEF0;
--dim: #E2E2E7;
--primary: #161F17;
--deemphasized: #6E8971;
--verydim: #EEF0EE;
--dim: #E2E7E2;
--accent: #78E2A0;
--background: #FDFFFD;
}
}

@media(prefers-color-scheme: dark) {
:root {
--primary: #F0F0F3;
--deemphasized: #8F8FA6;
--verydim: #232731;
--dim: #2B303B;
--primary: #F0F3F0;
--deemphasized: #8FA68F;
--verydim: #233127;
--dim: #2B3B30;
--accent: #2d5c3f;
--background: #121A12;
}
Expand Down

0 comments on commit 058871b

Please sign in to comment.