Skip to content

Instantly share code, notes, and snippets.

@juji
Last active January 13, 2025 22:01
Show Gist options
  • Save juji/375c51868a5abacfa4e7befca4dfae30 to your computer and use it in GitHub Desktop.
Save juji/375c51868a5abacfa4e7befca4dfae30 to your computer and use it in GitHub Desktop.
Minimal css starter (from vite, but some of them removed)
: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