source: src/app/globals.css@ 65f7b64

Last change on this file since 65f7b64 was 65f7b64, checked in by stefansaveski <stefansaveski19@…>, 12 months ago

Initial commit from Create Next App

  • Property mode set to 100644
File size: 488 bytes
Line 
1@import "tailwindcss";
2
3:root {
4 --background: #ffffff;
5 --foreground: #171717;
6}
7
8@theme inline {
9 --color-background: var(--background);
10 --color-foreground: var(--foreground);
11 --font-sans: var(--font-geist-sans);
12 --font-mono: var(--font-geist-mono);
13}
14
15@media (prefers-color-scheme: dark) {
16 :root {
17 --background: #0a0a0a;
18 --foreground: #ededed;
19 }
20}
21
22body {
23 background: var(--background);
24 color: var(--foreground);
25 font-family: Arial, Helvetica, sans-serif;
26}
Note: See TracBrowser for help on using the repository browser.