@xwadex/fesd-next 0.3.39 → 0.3.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles/defaults.css +87 -32
- package/package.json +1 -1
package/dist/styles/defaults.css
CHANGED
|
@@ -1,3 +1,90 @@
|
|
|
1
|
+
@custom-variant dark (&:is(.dark *));
|
|
2
|
+
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
html {
|
|
5
|
+
color-scheme: dark;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@layer base {
|
|
10
|
+
* {
|
|
11
|
+
@apply border-border outline-ring/50;
|
|
12
|
+
}
|
|
13
|
+
body {
|
|
14
|
+
@apply bg-background text-foreground;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@theme inline {
|
|
19
|
+
--radius-sm: calc(var(--radius) - 4px);
|
|
20
|
+
--radius-md: calc(var(--radius) - 2px);
|
|
21
|
+
--radius-lg: var(--radius);
|
|
22
|
+
--radius-xl: calc(var(--radius) + 4px);
|
|
23
|
+
--color-background: var(--background);
|
|
24
|
+
--color-foreground: var(--foreground);
|
|
25
|
+
--color-card: var(--card);
|
|
26
|
+
--color-card-foreground: var(--card-foreground);
|
|
27
|
+
--color-popover: var(--popover);
|
|
28
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
29
|
+
--color-primary: var(--primary);
|
|
30
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
31
|
+
--color-secondary: var(--secondary);
|
|
32
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
33
|
+
--color-muted: var(--muted);
|
|
34
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
35
|
+
--color-accent: var(--accent);
|
|
36
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
37
|
+
--color-destructive: var(--destructive);
|
|
38
|
+
--color-border: var(--border);
|
|
39
|
+
--color-input: var(--input);
|
|
40
|
+
--color-ring: var(--ring);
|
|
41
|
+
--color-chart-1: var(--chart-1);
|
|
42
|
+
--color-chart-2: var(--chart-2);
|
|
43
|
+
--color-chart-3: var(--chart-3);
|
|
44
|
+
--color-chart-4: var(--chart-4);
|
|
45
|
+
--color-chart-5: var(--chart-5);
|
|
46
|
+
--color-sidebar: var(--sidebar);
|
|
47
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
48
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
49
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
50
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
51
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
52
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
53
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
@theme default {
|
|
57
|
+
--animate-collapsible-down: collapsible-down 0.2s ease-out;
|
|
58
|
+
--animate-collapsible-up: collapsible-up 0.2s ease-out;
|
|
59
|
+
--animate-accordion-down2: accordion-down 0.2s ease-out;
|
|
60
|
+
--animate-accordion-up2: accordion-up 0.2s ease-out;
|
|
61
|
+
|
|
62
|
+
--animate-accordion-down3: accordion-down3 2s ease-out;
|
|
63
|
+
--animate-accordion-up3: accordion-up3 2s ease-out;
|
|
64
|
+
|
|
65
|
+
@keyframes accordion-down {
|
|
66
|
+
from {
|
|
67
|
+
height: 0;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
}
|
|
70
|
+
to {
|
|
71
|
+
height: var(--radix-accordion-content-height);
|
|
72
|
+
opacity: 1;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@keyframes accordion-up {
|
|
77
|
+
from {
|
|
78
|
+
height: var(--radix-accordion-content-height);
|
|
79
|
+
opacity: 1;
|
|
80
|
+
}
|
|
81
|
+
to {
|
|
82
|
+
height: 0;
|
|
83
|
+
opacity: 0;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
1
88
|
:root {
|
|
2
89
|
--radius: 0.625rem;
|
|
3
90
|
--background: oklch(1 0 0);
|
|
@@ -66,35 +153,3 @@
|
|
|
66
153
|
--sidebar-border: oklch(1 0 0 / 10%);
|
|
67
154
|
--sidebar-ring: oklch(0.556 0 0);
|
|
68
155
|
}
|
|
69
|
-
|
|
70
|
-
@theme defaults {
|
|
71
|
-
--animate-collapsible-down: collapsible-down 0.2s ease-out;
|
|
72
|
-
--animate-collapsible-up: collapsible-up 0.2s ease-out;
|
|
73
|
-
--animate-accordion-down2: accordion-down 0.2s ease-out;
|
|
74
|
-
--animate-accordion-up2: accordion-up 0.2s ease-out;
|
|
75
|
-
|
|
76
|
-
--animate-accordion-down3: accordion-down3 2s ease-out;
|
|
77
|
-
--animate-accordion-up3: accordion-up3 2s ease-out;
|
|
78
|
-
|
|
79
|
-
@keyframes accordion-down {
|
|
80
|
-
from {
|
|
81
|
-
height: 0;
|
|
82
|
-
opacity: 0;
|
|
83
|
-
}
|
|
84
|
-
to {
|
|
85
|
-
height: var(--radix-accordion-content-height);
|
|
86
|
-
opacity: 1;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
@keyframes accordion-up {
|
|
91
|
-
from {
|
|
92
|
-
height: var(--radix-accordion-content-height);
|
|
93
|
-
opacity: 1;
|
|
94
|
-
}
|
|
95
|
-
to {
|
|
96
|
-
height: 0;
|
|
97
|
-
opacity: 0;
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
}
|