Skip to content

Instantly share code, notes, and snippets.

@arnog
Created January 4, 2019 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnog/c3d10a81cfcc528beb430ea7540c5918 to your computer and use it in GitHub Desktop.
Save arnog/c3d10a81cfcc528beb430ea7540c5918 to your computer and use it in GitHub Desktop.
@media (prefers-color-scheme: dark) { body:not([theme="light"]) {
--surface: hsl(var(--hue),19%,26%);
--editable-surface: #333;
--editable-surface-border: hsl(0,0%,13%);
--secondary: hsl(var(--hue),25%,35%);
--secondary-border: hsl(var(--hue),19%,26%);
--on-surface: hsl(0,0%,98%);
--link: hsl(var(--hue),36%,84%);
}}
body[theme="dark"] {
--surface: hsl(var(--hue),19%,26%);
--editable-surface: #333;
--editable-surface-border: hsl(0,0%,13%);
--secondary: hsl(var(--hue),25%,35%);
--secondary-border: hsl(var(--hue),19%,26%);
--on-surface: hsl(0,0%,98%);
--link: hsl(var(--hue),36%,84%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment