CMU Coding Bootcamp
1@import "tailwindcss";
2:root {
3 font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
4 line-height: 1.5;
5 font-weight: 400;
6
7 color-scheme: light dark;
8 color: rgba(255, 255, 255, 0.87);
9 background-color: #242424;
10
11 font-synthesis: none;
12 text-rendering: optimizeLegibility;
13 -webkit-font-smoothing: antialiased;
14 -moz-osx-font-smoothing: grayscale;
15}
16
17@media (prefers-color-scheme: light) {
18 :root {
19 color: #213547;
20 background-color: #ffffff;
21 }
22}