/* src/frontend/css/root.css */
:root {
  interpolate-size: allow-keywords;
  --text: #fff;
  --accent: #00a;
  --completion: #080;
  --hinting: #880;
  --bg: #111;
  --bg-alt: #333;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  color: var(--text);
  background-color: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

a {
  color: var(--text);
  text-decoration: dashed underline;
}
