Skip to content

Commit

Permalink
💄 switch to dark theme only for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMoony committed Jun 14, 2024
1 parent f1d4bbd commit eb953f9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion web/src/assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
}

/* semantic color variables for this project */
:root {
/* :root {
--color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);
Expand All @@ -46,6 +46,19 @@
--color-person: var(--vt-c-indigo);
--color-organization: var(--vt-c-lightblue);
} */

:root {
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute);

--color-border: var(--vt-c-divider-dark-2);
--color-border-hover: var(--vt-c-divider-dark-1);

--color-heading: var(--vt-c-text-dark-1);
--color-text: var(--vt-c-text-dark-2);
--color-text-focus: var(--vt-c-text-dark-1);
}

@media (prefers-color-scheme: dark) {
Expand Down

0 comments on commit eb953f9

Please sign in to comment.