Skip to content

Instantly share code, notes, and snippets.

@0xdhrv
Created October 23, 2022 15:25
Show Gist options
  • Save 0xdhrv/7860c6ba504bff32195d0fadab520eb9 to your computer and use it in GitHub Desktop.
Save 0xdhrv/7860c6ba504bff32195d0fadab520eb9 to your computer and use it in GitHub Desktop.
monove colors
:root {
/* grounds */
--bg: #fff;
--fg: #000;
/* grays */
--a0: #ddd;
--a1: #d3d3d3;
--a2: #bebebe;
--a3: #aaa;
--a4: #959595;
--a5: #818181;
--a6: #656565;
--a7: #494949;
--a8: #2d2d2d;
--a9: #111;
}
@media (prefers-color-scheme: dark) {
:root {
/* grounds */
--bg: #000;
--fg: #fff;
/* grays */
--a0: #111;
--a1: #2d2d2d;
--a2: #494949;
--a3: #656565;
--a4: #818181;
--a5: #959595;
--a6: #aaa;
--a7: #bebebe;
--a8: #d3d3d3;
--a9: #ddd;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment