Enhance theme variables in app.css for improved styling consistency
SteamWar CI / Build (push) Successful in 1m47s
SteamWar CI / Deploy (push) Successful in 9s

This commit is contained in:
2026-05-18 23:36:25 +02:00
parent 038c2768e6
commit 4c434f8511
+26 -1
View File
@@ -20,7 +20,32 @@
@import "tailwindcss";
@theme {
--font-display: var(--font-barlow-condensed), sans-serif;
--font-sans: var(--font-roboto), ui-sans-serif, system-ui, sans-serif;
--font-display: var(--font-barlow-condensed), sans-serif;
--color-background: hsl(var(--background));
--color-foreground: hsl(var(--foreground));
--color-muted: hsl(var(--muted));
--color-muted-foreground: hsl(var(--muted-foreground));
--color-popover: hsl(var(--popover));
--color-popover-foreground: hsl(var(--popover-foreground));
--color-card: hsl(var(--card));
--color-card-foreground: hsl(var(--card-foreground));
--color-border: hsl(var(--border));
--color-input: hsl(var(--input));
--color-primary: hsl(var(--primary));
--color-primary-foreground: hsl(var(--primary-foreground));
--color-secondary: hsl(var(--secondary));
--color-secondary-foreground: hsl(var(--secondary-foreground));
--color-accent: hsl(var(--accent));
--color-accent-foreground: hsl(var(--accent-foreground));
--color-destructive: hsl(var(--destructive));
--color-destructive-foreground: hsl(var(--destructive-foreground));
--color-ring: hsl(var(--ring));
--radius-lg: var(--radius);
--radius-md: calc(var(--radius) - 2px);
--radius-sm: calc(var(--radius) - 4px);
}
@layer base {