Last active
January 13, 2025 22:01
-
-
Save juji/375c51868a5abacfa4e7befca4dfae30 to your computer and use it in GitHub Desktop.
Minimal css starter (from vite, but some of them removed)
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 { | |
--accent-color: greenyellow; | |
--bg-color: #242424; | |
--fg-color: rgba(255, 255, 255, 0.87); | |
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; | |
line-height: 1.5; | |
font-weight: 400; | |
color-scheme: dark; | |
color: var(--fg-color); | |
background-color: var(--bg-color); | |
font-synthesis: none; | |
text-rendering: optimizeLegibility; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
html, body { | |
margin: 0; | |
padding: 0; | |
} | |
a{ | |
color: var(--accent-color); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment