| 1 | @tailwind base; |
| 2 | @layer base { |
| 3 | :root { |
| 4 | color-scheme: light; |
| 5 | --theme-bg: #eff1f5; |
| 6 | --theme-link: #8839ef; |
| 7 | --theme-text: #4c4f69; |
| 8 | --theme-accent: #04a5e5; |
| 9 | --theme-accent-2: #4c4f69; |
| 10 | --theme-quote: #04a5e5; |
| 11 | --theme-menu-bg: rgb(250 250 250 / 0.85); |
| 12 | } |
| 13 | |
| 14 | :root.dark { |
| 15 | color-scheme: dark; |
| 16 | --theme-bg: #181825; |
| 17 | --theme-link: #cba6f7; |
| 18 | --theme-text: #cdd6f4; |
| 19 | --theme-accent: #89b4fa; |
| 20 | --theme-accent-2: #cdd6f4; |
| 21 | --theme-quote: #89b4fa; |
| 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; |