Files
darkwave/app/globals.css

38 lines
662 B
CSS
Raw Normal View History

2025-03-01 06:33:09 +03:00
@import "tailwindcss";
2026-01-20 01:38:10 +03:00
:root {
2025-03-01 06:33:09 +03:00
--background: #ffffff;
--foreground: #171717;
}
2026-01-20 01:38:10 +03:00
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
2025-03-01 06:33:09 +03:00
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
2026-01-20 01:38:10 +03:00
--font-merryweather: "Merriweather", serif;
--font-open-sans: "Open Sans", sans-serif;
2025-03-01 06:33:09 +03:00
}
2026-01-20 01:38:10 +03:00
}
2025-03-01 06:33:09 +03:00
body {
background: var(--background);
2026-01-20 01:38:10 +03:00
color: var(--foreground);
font-family: var(--font-open-sans), sans-serif;
2025-03-01 06:33:09 +03:00
}
2026-01-20 01:38:10 +03:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-noto-serif), serif;
}