|
1 | 1 | @import "tailwindcss"; |
| 2 | + |
| 3 | +/* stylelint-disable at-rule-no-unknown */ |
2 | 4 | @plugin "@tailwindcss/typography"; |
3 | 5 | @plugin "tailwindcss-animate"; |
4 | 6 | @plugin "tailwindcss-animated"; |
| 7 | +@source "../../**/*.{html,njk,md,svg,js}"; |
| 8 | + |
| 9 | +@theme { |
| 10 | + |
| 11 | + --color-border: hsl(var(--border)); |
| 12 | + --color-input: hsl(var(--input)); |
| 13 | + --color-ring: hsl(var(--ring)); |
| 14 | + --color-background: hsl(var(--background)); |
| 15 | + --color-foreground: hsl(var(--foreground)); |
| 16 | + |
| 17 | + --color-primary: hsl(var(--primary)); |
| 18 | + --color-primary-foreground: hsl(var(--primary-foreground)); |
| 19 | + |
| 20 | + --color-secondary: hsl(var(--secondary)); |
| 21 | + --color-secondary-foreground: hsl(var(--secondary-foreground)); |
| 22 | + |
| 23 | + --color-destructive: hsl(var(--destructive)); |
| 24 | + --color-destructive-foreground: hsl(var(--destructive-foreground)); |
| 25 | + |
| 26 | + --color-muted: hsl(var(--muted)); |
| 27 | + --color-muted-foreground: hsl(var(--muted-foreground)); |
| 28 | + |
| 29 | + --color-accent: hsl(var(--accent)); |
| 30 | + --color-accent-foreground: hsl(var(--accent-foreground)); |
| 31 | + |
| 32 | + --color-popover: hsl(var(--popover)); |
| 33 | + --color-popover-foreground: hsl(var(--popover-foreground)); |
| 34 | + |
| 35 | + --color-card: hsl(var(--card)); |
| 36 | + --color-card-foreground: hsl(var(--card-foreground)); |
| 37 | + |
| 38 | + --radius-lg: var(--radius); |
| 39 | + --radius-md: calc(var(--radius) - 2px); |
| 40 | + --radius-sm: calc(var(--radius) - 4px); |
| 41 | + |
| 42 | + --animate-accordion-down: accordion-down 0.2s ease-out; |
| 43 | + --animate-accordion-up: accordion-up 0.2s ease-out; |
| 44 | + |
| 45 | + @keyframes accordion-down { |
| 46 | + from { height: 0; } |
| 47 | + to { height: var(--radix-accordion-content-height); } |
| 48 | + } |
| 49 | + @keyframes accordion-up { |
| 50 | + from { height: var(--radix-accordion-content-height); } |
| 51 | + to { height: 0; } |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +@utility container { |
| 56 | + margin-inline: auto; |
| 57 | + padding-inline: 2rem; |
| 58 | +} |
| 59 | + |
| 60 | +/* stylelint-enable at-rule-no-unknown */ |
5 | 61 |
|
6 | 62 | @layer base { |
7 | 63 | :root { |
|
0 commit comments