3300.me

darkmode

last update: 2022/02/09
:root {
  --main-text: #000;
  --main-bg: #fff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --main-text: #ddd;
    --main-bg: #000;
  }
}

body {
  color: var(--main-text);
  background: var(--main-bg);
}

sample