feat: transfer brutalist design tokens and configure next/font

This commit is contained in:
Ilia Mashkov
2026-04-18 15:45:55 +03:00
parent 7c00f8bb1e
commit 3a29b99ae8
3 changed files with 218 additions and 53 deletions
+1 -25
View File
@@ -1,26 +1,2 @@
@import "tailwindcss";
: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;
}
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
@import "../src/shared/styles/theme.css";