﻿@charset "utf-8";

:root {
  color-scheme: light dark;
  --text-color-base: light-dark(black, white);
  --bg-color-base: light-dark(white, black);
}
body {
  color: var(--text-color-base);
  background-color: var(--bg-color-base);
}
