Skip to content

Instantly share code, notes, and snippets.

@bueltge
Created November 26, 2025 07:44
Show Gist options
  • Select an option

  • Save bueltge/fe6642b47283eb721586d46ee0e2b9d1 to your computer and use it in GitHub Desktop.

Select an option

Save bueltge/fe6642b47283eb721586d46ee0e2b9d1 to your computer and use it in GitHub Desktop.
starter.css
/**
* Minimal CSS Starter.
*
* More is not necessary, focus on speed and important thinks.
*/
::selection,
::target-text {
background: #000;
color: #fff;
}
html {
-webkit-font-smoothing: antialiased;
scroll-behavior: smooth;
text-wrap: pretty;
}
@view-transition {
navigation: auto;
}
/**
* Minimal Dark Mode.
*/
@media (prefers-color-scheme: dark) {
* {
background-color: inherit;
color: inherit;
}
html,
img:not([src$='.svg']) {
filter: invert(1) hue-rotate(180deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment