Today I Learned

Simple theming approach with CSS variables

October 23, 2023

:root {
  --color-text: black;
  --color-background: white;
  
  [data-theme="dark"] {
    --color-text: white;
    --color-background: black;
  }
}


body {
  color: var(--color-text);
  background-color: var(--color-background);
}
<body data-theme="dark">
  Hello traveller.
</body>

Result

screenshot 2023 10 24 at 12 20 33 am

screenshot 2023 10 24 at 12 20 20 am


© 2026 - Written by Vuong Vu. Connect with me on LinkedIn.