|
1 | | -@tailwind base; |
2 | | -@tailwind components; |
3 | | -@tailwind utilities; |
| 1 | +@import 'tailwindcss'; |
| 2 | + |
| 3 | +@plugin 'tailwindcss-animate'; |
| 4 | + |
| 5 | +@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'; |
| 6 | + |
| 7 | +@custom-variant dark (&:is(.dark *)); |
| 8 | + |
| 9 | +@theme { |
| 10 | + --font-sans: |
| 11 | + Figtree, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', |
| 12 | + 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; |
| 13 | + |
| 14 | + --radius-lg: var(--radius); |
| 15 | + --radius-md: calc(var(--radius) - 2px); |
| 16 | + --radius-sm: calc(var(--radius) - 4px); |
| 17 | + |
| 18 | + --color-background: hsl(var(--background)); |
| 19 | + --color-foreground: hsl(var(--foreground)); |
| 20 | + |
| 21 | + --color-card: hsl(var(--card)); |
| 22 | + --color-card-foreground: hsl(var(--card-foreground)); |
| 23 | + |
| 24 | + --color-popover: hsl(var(--popover)); |
| 25 | + --color-popover-foreground: hsl(var(--popover-foreground)); |
| 26 | + |
| 27 | + --color-primary: hsl(var(--primary)); |
| 28 | + --color-primary-foreground: hsl(var(--primary-foreground)); |
| 29 | + |
| 30 | + --color-secondary: hsl(var(--secondary)); |
| 31 | + --color-secondary-foreground: hsl(var(--secondary-foreground)); |
| 32 | + |
| 33 | + --color-muted: hsl(var(--muted)); |
| 34 | + --color-muted-foreground: hsl(var(--muted-foreground)); |
| 35 | + |
| 36 | + --color-accent: hsl(var(--accent)); |
| 37 | + --color-accent-foreground: hsl(var(--accent-foreground)); |
| 38 | + |
| 39 | + --color-destructive: hsl(var(--destructive)); |
| 40 | + --color-destructive-foreground: hsl(var(--destructive-foreground)); |
| 41 | + |
| 42 | + --color-border: hsl(var(--border)); |
| 43 | + --color-input: hsl(var(--input)); |
| 44 | + --color-ring: hsl(var(--ring)); |
| 45 | + |
| 46 | + --color-chart-1: hsl(var(--chart-1)); |
| 47 | + --color-chart-2: hsl(var(--chart-2)); |
| 48 | + --color-chart-3: hsl(var(--chart-3)); |
| 49 | + --color-chart-4: hsl(var(--chart-4)); |
| 50 | + --color-chart-5: hsl(var(--chart-5)); |
| 51 | + |
| 52 | + --color-sidebar: hsl(var(--sidebar-background)); |
| 53 | + --color-sidebar-foreground: hsl(var(--sidebar-foreground)); |
| 54 | + --color-sidebar-primary: hsl(var(--sidebar-primary)); |
| 55 | + --color-sidebar-primary-foreground: hsl(var(--sidebar-primary-foreground)); |
| 56 | + --color-sidebar-accent: hsl(var(--sidebar-accent)); |
| 57 | + --color-sidebar-accent-foreground: hsl(var(--sidebar-accent-foreground)); |
| 58 | + --color-sidebar-border: hsl(var(--sidebar-border)); |
| 59 | + --color-sidebar-ring: hsl(var(--sidebar-ring)); |
| 60 | +} |
| 61 | + |
| 62 | +/* |
| 63 | + The default border color has changed to `currentColor` in Tailwind CSS v4, |
| 64 | + so we've added these compatibility styles to make sure everything still |
| 65 | + looks the same as it did with Tailwind CSS v3. |
| 66 | +
|
| 67 | + If we ever want to remove these styles, we need to add an explicit border |
| 68 | + color utility to any element that depends on these defaults. |
| 69 | +*/ |
| 70 | +@layer base { |
| 71 | + *, |
| 72 | + ::after, |
| 73 | + ::before, |
| 74 | + ::backdrop, |
| 75 | + ::file-selector-button { |
| 76 | + border-color: var(--color-gray-200, currentColor); |
| 77 | + } |
| 78 | +} |
4 | 79 |
|
5 | 80 | @layer base { |
6 | 81 | :root { |
|
0 commit comments