CSS · 413 bytes Raw Blame History
1 @tailwind base;
2 @tailwind components;
3 @tailwind utilities;
4
5 :root {
6 --background: #ffffff;
7 --foreground: #171717;
8 }
9
10 @media (prefers-color-scheme: dark) {
11 :root {
12 --background: #0a0a0a;
13 --foreground: #ededed;
14 }
15 }
16
17 body {
18 color: var(--foreground);
19 background: var(--background);
20 font-family: Arial, Helvetica, sans-serif;
21 }
22
23 @layer utilities {
24 .text-balance {
25 text-wrap: balance;
26 }
27 }