Skip to content

Instantly share code, notes, and snippets.

@vzhou842
Created June 19, 2021 00:01
Show Gist options
  • Save vzhou842/6924be29275b79408c358b6420d2366b to your computer and use it in GitHub Desktop.
Save vzhou842/6924be29275b79408c358b6420d2366b to your computer and use it in GitHub Desktop.
/* Light Mode */
:root {
--color-background: white;
--color-text: #222;
--color-primary: #164BC5;
/* ... more colors */
}
/* Dark Mode */
:root.dark {
--color-background: black;
--color-text: #DDD;
--color-primary: #0F9640;
/* ... more colors */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment