styles.css
1 @import "tailwindcss"; 2 3 :root { 4 color-scheme: dark; 5 } 6 7 html, 8 body, 9 #app { 10 min-height: 100%; 11 } 12 13 body { 14 @apply m-0 bg-slate-950 text-slate-100 antialiased; 15 font-family: ui-sans-serif, system-ui, sans-serif; 16 } 17 18 button, 19 input, 20 textarea { 21 font: inherit; 22 }