Spaces:
Running
Running
| @import "tailwindcss"; | |
| @import "tw-animate-css"; | |
| /* | |
| * shadcn/ui-compatible theme tokens (Tailwind v4 / OKLCH). | |
| * | |
| * Light + dark palettes mirror the default shadcn slate theme so any | |
| * primitive copied from the shadcn catalogue Just Works without | |
| * editing. Brand customisation lands in a later step alongside the | |
| * Pareto-explorer view. | |
| */ | |
| @custom-variant dark (&:is(.dark *)); | |
| :root { | |
| --background: oklch(1 0 0); | |
| --foreground: oklch(0.145 0 0); | |
| --card: oklch(1 0 0); | |
| --card-foreground: oklch(0.145 0 0); | |
| --popover: oklch(1 0 0); | |
| --popover-foreground: oklch(0.145 0 0); | |
| --primary: oklch(0.205 0 0); | |
| --primary-foreground: oklch(0.985 0 0); | |
| --secondary: oklch(0.97 0 0); | |
| --secondary-foreground: oklch(0.205 0 0); | |
| --muted: oklch(0.97 0 0); | |
| --muted-foreground: oklch(0.556 0 0); | |
| --accent: oklch(0.97 0 0); | |
| --accent-foreground: oklch(0.205 0 0); | |
| --destructive: oklch(0.577 0.245 27.325); | |
| --destructive-foreground: oklch(0.985 0 0); | |
| --border: oklch(0.922 0 0); | |
| --input: oklch(0.922 0 0); | |
| --ring: oklch(0.708 0 0); | |
| --radius: 0.5rem; | |
| } | |
| .dark { | |
| --background: oklch(0.145 0 0); | |
| --foreground: oklch(0.985 0 0); | |
| --card: oklch(0.205 0 0); | |
| --card-foreground: oklch(0.985 0 0); | |
| --popover: oklch(0.205 0 0); | |
| --popover-foreground: oklch(0.985 0 0); | |
| --primary: oklch(0.985 0 0); | |
| --primary-foreground: oklch(0.205 0 0); | |
| --secondary: oklch(0.269 0 0); | |
| --secondary-foreground: oklch(0.985 0 0); | |
| --muted: oklch(0.269 0 0); | |
| --muted-foreground: oklch(0.708 0 0); | |
| --accent: oklch(0.269 0 0); | |
| --accent-foreground: oklch(0.985 0 0); | |
| --destructive: oklch(0.704 0.191 22.216); | |
| --destructive-foreground: oklch(0.985 0 0); | |
| --border: oklch(0.269 0 0); | |
| --input: oklch(0.269 0 0); | |
| --ring: oklch(0.556 0 0); | |
| } | |
| @theme inline { | |
| --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); | |
| --radius-lg: var(--radius); | |
| --radius-md: calc(var(--radius) - 2px); | |
| --radius-sm: calc(var(--radius) - 4px); | |
| } | |
| @layer base { | |
| * { | |
| border-color: var(--color-border); | |
| } | |
| body { | |
| background-color: var(--color-background); | |
| color: var(--color-foreground); | |
| font-feature-settings: | |
| "rlig" 1, | |
| "calt" 1; | |
| } | |
| } | |