Last active
July 12, 2023 10:48
-
-
Save farishan/0cc2f10e1b2e0118be4edca47fd8c853 to your computer and use it in GitHub Desktop.
Base CSS, stylesheet, dark mode, font family system ui
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
: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