:root {
  /* Tells the browser the page supports both themes */
  color-scheme: light dark;
}

body {
  /* Syntax: light-dark(light-value, dark-value) */
  background-color: light-dark(#ffffff, #121212);
  color: light-dark(#000000, #e0e0e0);
}

