85 lines
2.9 KiB
CSS
85 lines
2.9 KiB
CSS
@import 'tailwindcss';
|
|
@import 'tw-animate-css';
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
:root {
|
|
--background: oklch(0.12 0.02 60);
|
|
--foreground: oklch(0.85 0.03 80);
|
|
--card: oklch(0.16 0.02 55);
|
|
--card-foreground: oklch(0.88 0.03 75);
|
|
--popover: oklch(0.16 0.02 55);
|
|
--popover-foreground: oklch(0.88 0.03 75);
|
|
--primary: oklch(0.45 0.12 110);
|
|
--primary-foreground: oklch(0.98 0.01 90);
|
|
--secondary: oklch(0.22 0.02 50);
|
|
--secondary-foreground: oklch(0.85 0.03 80);
|
|
--muted: oklch(0.20 0.02 55);
|
|
--muted-foreground: oklch(0.55 0.02 65);
|
|
--accent: oklch(0.55 0.14 130);
|
|
--accent-foreground: oklch(0.98 0.01 90);
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--destructive-foreground: oklch(0.98 0.01 90);
|
|
--border: oklch(0.25 0.02 55);
|
|
--input: oklch(0.22 0.02 55);
|
|
--ring: oklch(0.45 0.12 110);
|
|
--chart-1: oklch(0.45 0.12 110);
|
|
--chart-2: oklch(0.55 0.14 130);
|
|
--chart-3: oklch(0.38 0.10 95);
|
|
--chart-4: oklch(0.65 0.15 140);
|
|
--chart-5: oklch(0.35 0.08 85);
|
|
--radius: 0.25rem;
|
|
}
|
|
|
|
@theme inline {
|
|
--font-sans: 'Geist', 'Geist Fallback';
|
|
--font-mono: 'Geist Mono', 'Geist Mono Fallback';
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-destructive-foreground: var(--destructive-foreground);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-5: var(--chart-5);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.noise-texture {
|
|
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
|
|
}
|
|
|
|
.mycelium-glow {
|
|
text-shadow: 0 0 20px oklch(0.45 0.12 110 / 0.5), 0 0 40px oklch(0.45 0.12 110 / 0.3);
|
|
}
|
|
}
|