|
1 | 1 | @import 'tailwindcss';
|
2 | 2 |
|
3 |
| -@import 'tw-animate-css'; |
4 |
| - |
5 | 3 | @source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
6 | 4 | @source '../../storage/framework/views/*.php';
|
7 | 5 |
|
8 |
| -@custom-variant dark (&:is(.dark *)); |
9 |
| - |
10 | 6 | @theme inline {
|
11 | 7 | --font-sans: Instrument Sans, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
12 |
| - |
13 |
| - --radius-lg: var(--radius); |
14 |
| - --radius-md: calc(var(--radius) - 2px); |
15 |
| - --radius-sm: calc(var(--radius) - 4px); |
16 |
| - |
17 |
| - --color-background: var(--background); |
18 |
| - --color-foreground: var(--foreground); |
19 |
| - |
20 |
| - --color-card: var(--card); |
21 |
| - --color-card-foreground: var(--card-foreground); |
22 |
| - |
23 |
| - --color-popover: var(--popover); |
24 |
| - --color-popover-foreground: var(--popover-foreground); |
25 |
| - |
26 |
| - --color-primary: var(--primary); |
27 |
| - --color-primary-foreground: var(--primary-foreground); |
28 |
| - |
29 |
| - --color-secondary: var(--secondary); |
30 |
| - --color-secondary-foreground: var(--secondary-foreground); |
31 |
| - |
32 |
| - --color-muted: var(--muted); |
33 |
| - --color-muted-foreground: var(--muted-foreground); |
34 |
| - |
35 |
| - --color-accent: var(--accent); |
36 |
| - --color-accent-foreground: var(--accent-foreground); |
37 |
| - |
38 |
| - --color-destructive: var(--destructive); |
39 |
| - --color-destructive-foreground: var(--destructive-foreground); |
40 |
| - |
41 |
| - --color-border: var(--border); |
42 |
| - --color-input: var(--input); |
43 |
| - --color-ring: var(--ring); |
44 |
| - |
45 |
| - --color-chart-1: var(--chart-1); |
46 |
| - --color-chart-2: var(--chart-2); |
47 |
| - --color-chart-3: var(--chart-3); |
48 |
| - --color-chart-4: var(--chart-4); |
49 |
| - --color-chart-5: var(--chart-5); |
50 |
| - |
51 |
| - --color-sidebar: var(--sidebar-background); |
52 |
| - --color-sidebar-foreground: var(--sidebar-foreground); |
53 |
| - --color-sidebar-primary: var(--sidebar-primary); |
54 |
| - --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); |
55 |
| - --color-sidebar-accent: var(--sidebar-accent); |
56 |
| - --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); |
57 |
| - --color-sidebar-border: var(--sidebar-border); |
58 |
| - --color-sidebar-ring: var(--sidebar-ring); |
59 |
| -} |
60 |
| - |
61 |
| -/* |
62 |
| - The default border color has changed to `currentColor` in Tailwind CSS v4, |
63 |
| - so we've added these compatibility styles to make sure everything still |
64 |
| - looks the same as it did with Tailwind CSS v3. |
65 |
| -
|
66 |
| - If we ever want to remove these styles, we need to add an explicit border |
67 |
| - color utility to any element that depends on these defaults. |
68 |
| -*/ |
69 |
| -@layer base { |
70 |
| - *, |
71 |
| - ::after, |
72 |
| - ::before, |
73 |
| - ::backdrop, |
74 |
| - ::file-selector-button { |
75 |
| - border-color: var(--color-gray-200, currentColor); |
76 |
| - } |
77 |
| -} |
78 |
| - |
79 |
| -@layer utilities { |
80 |
| - body, |
81 |
| - html { |
82 |
| - --font-sans: |
83 |
| - 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; |
84 |
| - } |
85 |
| -} |
86 |
| - |
87 |
| -:root { |
88 |
| - --background: hsl(0 0% 100%); |
89 |
| - --foreground: hsl(0 0% 3.9%); |
90 |
| - --card: hsl(0 0% 100%); |
91 |
| - --card-foreground: hsl(0 0% 3.9%); |
92 |
| - --popover: hsl(0 0% 100%); |
93 |
| - --popover-foreground: hsl(0 0% 3.9%); |
94 |
| - --primary: hsl(0 0% 9%); |
95 |
| - --primary-foreground: hsl(0 0% 98%); |
96 |
| - --secondary: hsl(0 0% 92.1%); |
97 |
| - --secondary-foreground: hsl(0 0% 9%); |
98 |
| - --muted: hsl(0 0% 96.1%); |
99 |
| - --muted-foreground: hsl(0 0% 45.1%); |
100 |
| - --accent: hsl(0 0% 96.1%); |
101 |
| - --accent-foreground: hsl(0 0% 9%); |
102 |
| - --destructive: hsl(0 84.2% 60.2%); |
103 |
| - --destructive-foreground: hsl(0 0% 98%); |
104 |
| - --border: hsl(0 0% 92.8%); |
105 |
| - --input: hsl(0 0% 89.8%); |
106 |
| - --ring: hsl(0 0% 3.9%); |
107 |
| - --chart-1: hsl(12 76% 61%); |
108 |
| - --chart-2: hsl(173 58% 39%); |
109 |
| - --chart-3: hsl(197 37% 24%); |
110 |
| - --chart-4: hsl(43 74% 66%); |
111 |
| - --chart-5: hsl(27 87% 67%); |
112 |
| - --radius: 0.5rem; |
113 |
| - --sidebar-background: hsl(0 0% 98%); |
114 |
| - --sidebar-foreground: hsl(240 5.3% 26.1%); |
115 |
| - --sidebar-primary: hsl(0 0% 10%); |
116 |
| - --sidebar-primary-foreground: hsl(0 0% 98%); |
117 |
| - --sidebar-accent: hsl(0 0% 94%); |
118 |
| - --sidebar-accent-foreground: hsl(0 0% 30%); |
119 |
| - --sidebar-border: hsl(0 0% 91%); |
120 |
| - --sidebar-ring: hsl(217.2 91.2% 59.8%); |
121 |
| - --sidebar: hsl(0 0% 98%); |
122 |
| -} |
123 |
| - |
124 |
| -.dark { |
125 |
| - --background: hsl(0 0% 3.9%); |
126 |
| - --foreground: hsl(0 0% 98%); |
127 |
| - --card: hsl(0 0% 3.9%); |
128 |
| - --card-foreground: hsl(0 0% 98%); |
129 |
| - --popover: hsl(0 0% 3.9%); |
130 |
| - --popover-foreground: hsl(0 0% 98%); |
131 |
| - --primary: hsl(0 0% 98%); |
132 |
| - --primary-foreground: hsl(0 0% 9%); |
133 |
| - --secondary: hsl(0 0% 14.9%); |
134 |
| - --secondary-foreground: hsl(0 0% 98%); |
135 |
| - --muted: hsl(0 0% 16.08%); |
136 |
| - --muted-foreground: hsl(0 0% 63.9%); |
137 |
| - --accent: hsl(0 0% 14.9%); |
138 |
| - --accent-foreground: hsl(0 0% 98%); |
139 |
| - --destructive: hsl(0 84% 60%); |
140 |
| - --destructive-foreground: hsl(0 0% 98%); |
141 |
| - --border: hsl(0 0% 14.9%); |
142 |
| - --input: hsl(0 0% 14.9%); |
143 |
| - --ring: hsl(0 0% 83.1%); |
144 |
| - --chart-1: hsl(220 70% 50%); |
145 |
| - --chart-2: hsl(160 60% 45%); |
146 |
| - --chart-3: hsl(30 80% 55%); |
147 |
| - --chart-4: hsl(280 65% 60%); |
148 |
| - --chart-5: hsl(340 75% 55%); |
149 |
| - --sidebar-background: hsl(0 0% 7%); |
150 |
| - --sidebar-foreground: hsl(0 0% 95.9%); |
151 |
| - --sidebar-primary: hsl(360, 100%, 100%); |
152 |
| - --sidebar-primary-foreground: hsl(0 0% 100%); |
153 |
| - --sidebar-accent: hsl(0 0% 15.9%); |
154 |
| - --sidebar-accent-foreground: hsl(240 4.8% 95.9%); |
155 |
| - --sidebar-border: hsl(0 0% 15.9%); |
156 |
| - --sidebar-ring: hsl(217.2 91.2% 59.8%); |
157 |
| - --sidebar: hsl(240 5.9% 10%); |
158 |
| -} |
159 |
| - |
160 |
| -@layer base { |
161 |
| - * { |
162 |
| - @apply border-border outline-ring/50; |
163 |
| - } |
164 |
| - body { |
165 |
| - @apply bg-background text-foreground; |
166 |
| - } |
167 | 8 | }
|
0 commit comments