/* Theme CSS
 * Light/dark theme scopes and transitions.
 */

:root {
  color-scheme: light dark;
  transition: color var(--transition-base, 250ms), background var(--transition-base, 250ms);
}

[data-theme="dark"] body,
.theme-dark body {
  background: var(--color-background);
  color: var(--color-text);
}
