| 1 | @tailwind base; |
| 2 | @layer base { |
| 3 | :root { |
| 4 | color-scheme: light; |
| 5 | --theme-bg: #e5e9f0; |
| 6 | --theme-link: #81a1c1; |
| 7 | --theme-text: #2e3440; |
| 8 | --theme-accent: #88C0D0; |
| 9 | --theme-accent-2: #5e81ac; |
| 10 | --theme-quote: #5e81ac; |
| 11 | --theme-menu-bg: rgb(250 250 250 / 0.85); |
| 12 | } |
| 13 | |
| 14 | :root.dark { |
| 15 | color-scheme: dark; |
| 16 | --theme-bg: #2e3440; |
| 17 | --theme-link: #bf616a; |
| 18 | --theme-text: #edeff3; |
| 19 | --theme-accent: #a3be8c; |
| 20 | --theme-accent-2: #8fbcbb; |
| 21 | --theme-quote: #a3be8c; |
| 22 | --theme-menu-bg: rgb(46, 52, 64 / 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; |