Skip to content

Instantly share code, notes, and snippets.

@farishan
Last active July 12, 2023 10:48
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 farishan/0cc2f10e1b2e0118be4edca47fd8c853 to your computer and use it in GitHub Desktop.
Save farishan/0cc2f10e1b2e0118be4edca47fd8c853 to your computer and use it in GitHub Desktop.
Base CSS, stylesheet, dark mode, font family system ui
:root {
--background-color: #f5f5f5;
--color: #222222;
--link-color: initial;
}
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #222222;
--color: #ffffff;
--link-color: inherit;
}
}
html {
background-color: var(--background-color);
color: var(--color);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a {
color: var(--link-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment