This commit is contained in:
2026-04-19 17:23:31 +03:00
parent 9cad199125
commit 4f2188363a
122 changed files with 3215 additions and 116 deletions

View File

@@ -1,26 +1,25 @@
@import "tailwindcss";
@theme {
--font-serif: var(--font-oranienbaum), serif;
--font-sans: var(--font-inter), sans-serif;
--color-background: #faf7f0;
--color-foreground: #1a1a1a;
--color-brand: #c88c4b;
}
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
--background: #faf7f0;
--foreground: #1a1a1a;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: var(--font-inter), sans-serif;
}
h1, h2, h3, h4, h5, h6, .font-serif {
font-family: var(--font-oranienbaum), serif;
}