Skip to content

Commit

Permalink
feat(): Reduced dark mode contrast.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Feb 6, 2024
1 parent c397e43 commit 54f413b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/tokens.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
:root {
color-scheme: light;
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--foreground: 240 10% 6.9%;

--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--card-foreground: 240 10% 6.9%;

--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--popover-foreground: 240 10% 6.9%;

--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
Expand All @@ -26,20 +26,20 @@

--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 10% 3.9%;
--ring: 240 10% 6.9%;

--radius: 0.5rem;
}

:root.theme-mode-dark {
color-scheme: dark;
--background: 240 10% 3.9%;
--background: 240 10% 6.9%;
--foreground: 0 0% 98%;

--card: 240 10% 3.9%;
--card: 240 10% 6.9%;
--card-foreground: 0 0% 98%;

--popover: 240 10% 3.9%;
--popover: 240 10% 6.9%;
--popover-foreground: 0 0% 98%;

--primary: 0 0% 98%;
Expand Down

0 comments on commit 54f413b

Please sign in to comment.