| 1 | @tailwind base; |
| 2 | @layer base { |
| 3 | :root { |
| 4 | color-scheme: light; |
| 5 | --theme-bg: #f9f5d7; |
| 6 | --theme-link: #6c782e; |
| 7 | --theme-text: #4f3829; |
| 8 | --theme-accent: #a96b2c; |
| 9 | --theme-accent-2: #4f3829; |
| 10 | --theme-quote: #a96b2c; |
| 11 | --theme-menu-bg: rgb(250 250 250 / 0.85); |
| 12 | } |
| 13 | |
| 14 | :root.dark { |
| 15 | color-scheme: dark; |
| 16 | --theme-bg: #141617; |
| 17 | --theme-link: #ea6962; |
| 18 | --theme-text: #ddc7a1; |
| 19 | --theme-accent: #d8a658; |
| 20 | --theme-accent-2: #ddc7a1; |
| 21 | --theme-quote: #d8a658; |
| 22 | --theme-menu-bg: rgb(40, 40, 40 / 0.85); |
| 23 | } |
| 24 | |
| 25 | html { |
| 26 | @apply h-full scroll-smooth border-t-2 border-textColor; |
| 27 | } |
| 28 | |
| 29 | html body { |
| 30 | @apply mx-auto flex h-full max-w-3xl flex-col bg-bgColor px-8 pt-16 font-mono text-sm font-normal text-textColor antialiased; |
| 31 | } |
| 32 | } |
| 33 | @tailwind components; |
| 34 | @tailwind utilities; |