/*
 * Application-wide CSS for Propshaft.
 * Catppuccin Mocha is the only supported color scheme for this site.
 */

:root {
  --color-rosewater: 245 224 220;
  --color-flamingo: 242 205 205;
  --color-pink: 245 194 231;
  --color-mauve: 203 166 247;
  --color-red: 243 139 168;
  --color-maroon: 235 160 172;
  --color-peach: 250 179 135;
  --color-yellow: 249 226 175;
  --color-green: 166 227 161;
  --color-teal: 148 226 213;
  --color-sky: 137 220 235;
  --color-sapphire: 116 199 236;
  --color-blue: 137 180 250;
  --color-lavender: 180 190 254;
  --color-text: 205 214 244;
  --color-subtext1: 186 194 222;
  --color-subtext0: 166 173 200;
  --color-overlay2: 147 153 178;
  --color-overlay1: 127 132 156;
  --color-overlay0: 108 112 134;
  --color-surface2: 88 91 112;
  --color-surface1: 69 71 90;
  --color-surface0: 49 50 68;
  --color-base: 30 30 46;
  --color-mantle: 24 24 37;
  --color-crust: 17 17 27;
}

html {
  scroll-behavior: smooth;
  background: rgb(var(--color-base));
}

body {
  min-height: 100vh;
  background: rgb(var(--color-base));
  color: rgb(var(--color-text));
}

a {
  color: inherit;
}
