Skip to content

Instantly share code, notes, and snippets.

@James-Ansley
Created February 27, 2024 10:57
Show Gist options
  • Save James-Ansley/6bd8ab354a0cdb9b67de5b75fb063fde to your computer and use it in GitHub Desktop.
Save James-Ansley/6bd8ab354a0cdb9b67de5b75fb063fde to your computer and use it in GitHub Desktop.
Common primary/background colours I use so I don't forget
:root {
--primary: #192734;
--primary-alt: #384047;
--background: #f2f2f2;
--surface: #caccce;
}
:root[data-theme="dark"] {
--primary: rgba(255, 255, 255, 0.85);
--primary-alt: rgba(217, 217, 217, 0.85);
--background: #242424;
--surface: hsla(0, 0%, 40%, 0.48);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment