fork of hey-api/openapi-ts because I need some additional things
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
17body {
18 color: var(--foreground);
19 background: var(--background);
20 font-family: Arial, Helvetica, sans-serif;
21}