@jackbernnie/hiyf 0.1.0
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/LICENSE +191 -0
- package/NOTICE +12 -0
- package/README.md +47 -0
- package/dist/components/Accordion.d.ts +38 -0
- package/dist/components/Accordion.js +38 -0
- package/dist/components/Alert.d.ts +29 -0
- package/dist/components/Alert.js +39 -0
- package/dist/components/AlertDialog.d.ts +37 -0
- package/dist/components/AlertDialog.js +38 -0
- package/dist/components/AspectRatio.d.ts +15 -0
- package/dist/components/AspectRatio.js +15 -0
- package/dist/components/Avatar.d.ts +26 -0
- package/dist/components/Avatar.js +13 -0
- package/dist/components/Badge.d.ts +18 -0
- package/dist/components/Badge.js +17 -0
- package/dist/components/Box.d.ts +13 -0
- package/dist/components/Box.js +52 -0
- package/dist/components/Breadcrumb.d.ts +33 -0
- package/dist/components/Breadcrumb.js +16 -0
- package/dist/components/Button.d.ts +40 -0
- package/dist/components/Button.js +33 -0
- package/dist/components/ButtonGroup.d.ts +18 -0
- package/dist/components/ButtonGroup.js +8 -0
- package/dist/components/Card.d.ts +46 -0
- package/dist/components/Card.js +24 -0
- package/dist/components/Carousel.d.ts +27 -0
- package/dist/components/Carousel.js +13 -0
- package/dist/components/Chart.d.ts +17 -0
- package/dist/components/Chart.js +94 -0
- package/dist/components/Checkbox.d.ts +26 -0
- package/dist/components/Checkbox.js +9 -0
- package/dist/components/Collapsible.d.ts +27 -0
- package/dist/components/Collapsible.js +26 -0
- package/dist/components/Combobox.d.ts +36 -0
- package/dist/components/Combobox.js +41 -0
- package/dist/components/Command.d.ts +37 -0
- package/dist/components/Command.js +32 -0
- package/dist/components/ContextMenu.d.ts +34 -0
- package/dist/components/ContextMenu.js +23 -0
- package/dist/components/Dialog.d.ts +20 -0
- package/dist/components/Dialog.js +34 -0
- package/dist/components/Drawer.d.ts +28 -0
- package/dist/components/Drawer.js +25 -0
- package/dist/components/DropdownMenu.d.ts +42 -0
- package/dist/components/DropdownMenu.js +32 -0
- package/dist/components/Empty.d.ts +28 -0
- package/dist/components/Empty.js +15 -0
- package/dist/components/Field.d.ts +30 -0
- package/dist/components/Field.js +13 -0
- package/dist/components/Grid.d.ts +32 -0
- package/dist/components/Grid.js +37 -0
- package/dist/components/GridItem.d.ts +30 -0
- package/dist/components/GridItem.js +40 -0
- package/dist/components/HoverCard.d.ts +22 -0
- package/dist/components/HoverCard.js +12 -0
- package/dist/components/Input.d.ts +34 -0
- package/dist/components/Input.js +8 -0
- package/dist/components/InputGroup.d.ts +28 -0
- package/dist/components/InputGroup.js +13 -0
- package/dist/components/InputOTP.d.ts +26 -0
- package/dist/components/InputOTP.js +25 -0
- package/dist/components/Kbd.d.ts +26 -0
- package/dist/components/Kbd.js +11 -0
- package/dist/components/Label.d.ts +20 -0
- package/dist/components/Label.js +17 -0
- package/dist/components/Menubar.d.ts +35 -0
- package/dist/components/Menubar.js +19 -0
- package/dist/components/NativeSelect.d.ts +33 -0
- package/dist/components/NativeSelect.js +37 -0
- package/dist/components/NavigationMenu.d.ts +32 -0
- package/dist/components/NavigationMenu.js +14 -0
- package/dist/components/Pagination.d.ts +28 -0
- package/dist/components/Pagination.js +62 -0
- package/dist/components/Popover.d.ts +28 -0
- package/dist/components/Popover.js +19 -0
- package/dist/components/Progress.d.ts +25 -0
- package/dist/components/Progress.js +37 -0
- package/dist/components/RadioGroup.d.ts +35 -0
- package/dist/components/RadioGroup.js +44 -0
- package/dist/components/Resizable.d.ts +31 -0
- package/dist/components/Resizable.js +17 -0
- package/dist/components/ScrollArea.d.ts +8 -0
- package/dist/components/ScrollArea.js +14 -0
- package/dist/components/Select.d.ts +35 -0
- package/dist/components/Select.js +33 -0
- package/dist/components/Separator.d.ts +10 -0
- package/dist/components/Separator.js +30 -0
- package/dist/components/Sheet.d.ts +31 -0
- package/dist/components/Sheet.js +26 -0
- package/dist/components/Sidebar.d.ts +52 -0
- package/dist/components/Sidebar.js +96 -0
- package/dist/components/Skeleton.d.ts +40 -0
- package/dist/components/Skeleton.js +42 -0
- package/dist/components/Slider.d.ts +26 -0
- package/dist/components/Slider.js +9 -0
- package/dist/components/Spinner.d.ts +7 -0
- package/dist/components/Spinner.js +13 -0
- package/dist/components/Status.d.ts +30 -0
- package/dist/components/Status.js +27 -0
- package/dist/components/Switch.d.ts +27 -0
- package/dist/components/Switch.js +9 -0
- package/dist/components/Table.d.ts +39 -0
- package/dist/components/Table.js +22 -0
- package/dist/components/Tabs.d.ts +32 -0
- package/dist/components/Tabs.js +21 -0
- package/dist/components/Text.d.ts +2 -0
- package/dist/components/Text.js +5 -0
- package/dist/components/Textarea.d.ts +32 -0
- package/dist/components/Textarea.js +15 -0
- package/dist/components/Toaster.d.ts +30 -0
- package/dist/components/Toaster.js +9 -0
- package/dist/components/Toggle.d.ts +34 -0
- package/dist/components/Toggle.js +31 -0
- package/dist/components/ToggleGroup.d.ts +46 -0
- package/dist/components/ToggleGroup.js +26 -0
- package/dist/components/Tooltip.d.ts +25 -0
- package/dist/components/Tooltip.js +12 -0
- package/dist/components/ui/accordion.d.ts +7 -0
- package/dist/components/ui/accordion.js +81 -0
- package/dist/components/ui/alert-dialog.d.ts +18 -0
- package/dist/components/ui/alert-dialog.js +154 -0
- package/dist/components/ui/alert.d.ts +10 -0
- package/dist/components/ui/alert.js +64 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/aspect-ratio.js +11 -0
- package/dist/components/ui/avatar.d.ts +11 -0
- package/dist/components/ui/avatar.js +57 -0
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/badge.js +42 -0
- package/dist/components/ui/breadcrumb.d.ts +11 -0
- package/dist/components/ui/breadcrumb.js +87 -0
- package/dist/components/ui/button-group.d.ts +11 -0
- package/dist/components/ui/button-group.js +37 -0
- package/dist/components/ui/button.d.ts +10 -0
- package/dist/components/ui/button.js +55 -0
- package/dist/components/ui/card.d.ts +11 -0
- package/dist/components/ui/card.js +82 -0
- package/dist/components/ui/carousel.d.ts +28 -0
- package/dist/components/ui/carousel.js +196 -0
- package/dist/components/ui/chart.d.ts +44 -0
- package/dist/components/ui/chart.js +198 -0
- package/dist/components/ui/checkbox.d.ts +4 -0
- package/dist/components/ui/checkbox.js +33 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/collapsible.js +33 -0
- package/dist/components/ui/combobox.d.ts +24 -0
- package/dist/components/ui/combobox.js +160 -0
- package/dist/components/ui/command.d.ts +18 -0
- package/dist/components/ui/command.js +142 -0
- package/dist/components/ui/context-menu.d.ts +31 -0
- package/dist/components/ui/context-menu.js +73 -0
- package/dist/components/ui/dialog.d.ts +17 -0
- package/dist/components/ui/dialog.js +138 -0
- package/dist/components/ui/direction.d.ts +7 -0
- package/dist/components/ui/direction.js +14 -0
- package/dist/components/ui/drawer.d.ts +13 -0
- package/dist/components/ui/drawer.js +101 -0
- package/dist/components/ui/dropdown-menu.d.ts +29 -0
- package/dist/components/ui/dropdown-menu.js +98 -0
- package/dist/components/ui/empty.d.ts +11 -0
- package/dist/components/ui/empty.js +97 -0
- package/dist/components/ui/field.d.ts +24 -0
- package/dist/components/ui/field.js +110 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/hover-card.js +37 -0
- package/dist/components/ui/input-group.d.ts +16 -0
- package/dist/components/ui/input-group.js +111 -0
- package/dist/components/ui/input-otp.d.ts +11 -0
- package/dist/components/ui/input-otp.js +66 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/input.js +19 -0
- package/dist/components/ui/item.d.ts +23 -0
- package/dist/components/ui/item.js +181 -0
- package/dist/components/ui/kbd.d.ts +3 -0
- package/dist/components/ui/kbd.js +28 -0
- package/dist/components/ui/label.d.ts +4 -0
- package/dist/components/ui/label.js +23 -0
- package/dist/components/ui/menubar.d.ts +30 -0
- package/dist/components/ui/menubar.js +119 -0
- package/dist/components/ui/native-select.d.ts +8 -0
- package/dist/components/ui/native-select.js +49 -0
- package/dist/components/ui/navigation-menu.d.ts +14 -0
- package/dist/components/ui/navigation-menu.js +139 -0
- package/dist/components/ui/pagination.d.ts +17 -0
- package/dist/components/ui/pagination.js +120 -0
- package/dist/components/ui/popover.d.ts +10 -0
- package/dist/components/ui/popover.js +37 -0
- package/dist/components/ui/progress.d.ts +4 -0
- package/dist/components/ui/radio-group.d.ts +5 -0
- package/dist/components/ui/radio-group.js +44 -0
- package/dist/components/ui/resizable.d.ts +7 -0
- package/dist/components/ui/resizable.js +44 -0
- package/dist/components/ui/scroll-area.d.ts +5 -0
- package/dist/components/ui/scroll-area.js +59 -0
- package/dist/components/ui/select.d.ts +15 -0
- package/dist/components/ui/select.js +131 -0
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/separator.js +27 -0
- package/dist/components/ui/sheet.d.ts +14 -0
- package/dist/components/ui/sheet.js +113 -0
- package/dist/components/ui/sidebar.d.ts +69 -0
- package/dist/components/ui/sidebar.js +459 -0
- package/dist/components/ui/skeleton.d.ts +2 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/slider.js +60 -0
- package/dist/components/ui/sonner.d.ts +3 -0
- package/dist/components/ui/sonner.js +38 -0
- package/dist/components/ui/spinner.d.ts +2 -0
- package/dist/components/ui/spinner.js +13 -0
- package/dist/components/ui/switch.d.ts +6 -0
- package/dist/components/ui/switch.js +32 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/table.js +95 -0
- package/dist/components/ui/tabs.d.ts +11 -0
- package/dist/components/ui/tabs.js +87 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/textarea.js +18 -0
- package/dist/components/ui/toggle-group.d.ts +10 -0
- package/dist/components/ui/toggle-group.js +76 -0
- package/dist/components/ui/toggle.d.ts +9 -0
- package/dist/components/ui/toggle.js +43 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/components/ui/tooltip.js +53 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-mobile.js +18 -0
- package/dist/index.d.ts +122 -0
- package/dist/index.js +61 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +8 -0
- package/dist/primitives/createText.d.ts +103 -0
- package/dist/primitives/createText.js +183 -0
- package/dist/primitives/resolveProperties.d.ts +17 -0
- package/dist/stylex.css +1450 -0
- package/dist/tokens/animations.d.ts +126 -0
- package/dist/tokens/animations.js +61 -0
- package/dist/tokens/tokens.stylex.d.ts +85 -0
- package/dist/tokens/tokens.stylex.js +81 -0
- package/dist/utils/box-styles.d.ts +1117 -0
- package/dist/utils/box-styles.js +1455 -0
- package/dist/utils/grid.d.ts +4 -0
- package/dist/utils/resolvers.d.ts +10 -0
- package/dist/utils/resolvers.js +356 -0
- package/dist/utils/types.d.ts +133 -0
- package/package.json +80 -0
- package/src/theme.css +206 -0
package/src/theme.css
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
/* ──────────────────────────────────────────────────────────────────────────
|
|
2
|
+
* @jackbernnie/hiyf — theme.css
|
|
3
|
+
* The design system's own styling foundation. Import this once in a consuming
|
|
4
|
+
* app (after `@import "tailwindcss"`):
|
|
5
|
+
*
|
|
6
|
+
* @import "tailwindcss";
|
|
7
|
+
* @import "tw-animate-css";
|
|
8
|
+
* @import "@jackbernnie/hiyf/theme.css";
|
|
9
|
+
* @source "../node_modules/@jackbernnie/hiyf/src";
|
|
10
|
+
*
|
|
11
|
+
* Theme = the radix-vega / neutral shadcn preset. Vendored here (not pulled from
|
|
12
|
+
* the `shadcn` CLI package) so the fork is self-contained.
|
|
13
|
+
* ────────────────────────────────────────────────────────────────────────── */
|
|
14
|
+
|
|
15
|
+
/* ─── Base variants + keyframes (from shadcn/tailwind.css, radix-vega) ──────── */
|
|
16
|
+
@theme inline {
|
|
17
|
+
@keyframes accordion-down {
|
|
18
|
+
from { height: 0; }
|
|
19
|
+
to { height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto)); }
|
|
20
|
+
}
|
|
21
|
+
@keyframes accordion-up {
|
|
22
|
+
from { height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto)); }
|
|
23
|
+
to { height: 0; }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@custom-variant dark (&:is(.dark *));
|
|
28
|
+
|
|
29
|
+
@custom-variant data-open {
|
|
30
|
+
&:where([data-state="open"]), &:where([data-open]:not([data-open="false"])) { @slot; }
|
|
31
|
+
}
|
|
32
|
+
@custom-variant data-closed {
|
|
33
|
+
&:where([data-state="closed"]), &:where([data-closed]:not([data-closed="false"])) { @slot; }
|
|
34
|
+
}
|
|
35
|
+
@custom-variant data-checked {
|
|
36
|
+
&:where([data-state="checked"]), &:where([data-checked]:not([data-checked="false"])) { @slot; }
|
|
37
|
+
}
|
|
38
|
+
@custom-variant data-unchecked {
|
|
39
|
+
&:where([data-state="unchecked"]), &:where([data-unchecked]:not([data-unchecked="false"])) { @slot; }
|
|
40
|
+
}
|
|
41
|
+
@custom-variant data-selected {
|
|
42
|
+
&:where([data-selected="true"]) { @slot; }
|
|
43
|
+
}
|
|
44
|
+
@custom-variant data-disabled {
|
|
45
|
+
&:where([data-disabled="true"]), &:where([data-disabled]:not([data-disabled="false"])) { @slot; }
|
|
46
|
+
}
|
|
47
|
+
@custom-variant data-active {
|
|
48
|
+
&:where([data-state="active"]), &:where([data-active]:not([data-active="false"])) { @slot; }
|
|
49
|
+
}
|
|
50
|
+
@custom-variant data-horizontal {
|
|
51
|
+
&:where([data-orientation="horizontal"]) { @slot; }
|
|
52
|
+
}
|
|
53
|
+
@custom-variant data-vertical {
|
|
54
|
+
&:where([data-orientation="vertical"]) { @slot; }
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@utility no-scrollbar {
|
|
58
|
+
-ms-overflow-style: none;
|
|
59
|
+
scrollbar-width: none;
|
|
60
|
+
&::-webkit-scrollbar { display: none; }
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/* ─── Token → utility mapping ───────────────────────────────────────────────── */
|
|
64
|
+
@theme inline {
|
|
65
|
+
--color-background: var(--background);
|
|
66
|
+
--color-foreground: var(--foreground);
|
|
67
|
+
--color-card: var(--card);
|
|
68
|
+
--color-card-foreground: var(--card-foreground);
|
|
69
|
+
--color-popover: var(--popover);
|
|
70
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
71
|
+
--color-primary: var(--primary);
|
|
72
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
73
|
+
--color-secondary: var(--secondary);
|
|
74
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
75
|
+
--color-muted: var(--muted);
|
|
76
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
77
|
+
--color-accent: var(--accent);
|
|
78
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
79
|
+
--color-destructive: var(--destructive);
|
|
80
|
+
--color-border: var(--border);
|
|
81
|
+
--color-input: var(--input);
|
|
82
|
+
--color-ring: var(--ring);
|
|
83
|
+
--color-chart-1: var(--chart-1);
|
|
84
|
+
--color-chart-2: var(--chart-2);
|
|
85
|
+
--color-chart-3: var(--chart-3);
|
|
86
|
+
--color-chart-4: var(--chart-4);
|
|
87
|
+
--color-chart-5: var(--chart-5);
|
|
88
|
+
--color-sidebar: var(--sidebar);
|
|
89
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
90
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
91
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
92
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
93
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
94
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
95
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
96
|
+
|
|
97
|
+
--radius-sm: calc(var(--radius) * 0.6);
|
|
98
|
+
--radius-md: calc(var(--radius) * 0.8);
|
|
99
|
+
--radius-lg: var(--radius);
|
|
100
|
+
--radius-xl: calc(var(--radius) * 1.4);
|
|
101
|
+
--radius-2xl: calc(var(--radius) * 1.8);
|
|
102
|
+
--radius-3xl: calc(var(--radius) * 2.2);
|
|
103
|
+
--radius-4xl: calc(var(--radius) * 2.6);
|
|
104
|
+
|
|
105
|
+
/* Fonts (consumer can override). */
|
|
106
|
+
--font-sans: 'Inter Variable', 'Inter', ui-sans-serif, system-ui, sans-serif;
|
|
107
|
+
--font-heading: var(--font-sans);
|
|
108
|
+
--font-display: var(--font-sans);
|
|
109
|
+
|
|
110
|
+
/* Compat: the StyleX <Text> primitive still references these. */
|
|
111
|
+
--color-polar-50: hsl(233, 4%, 85%);
|
|
112
|
+
--color-polar-100: hsl(233, 4%, 79%);
|
|
113
|
+
--color-polar-200: hsl(233, 4%, 68%);
|
|
114
|
+
--color-polar-300: hsl(233, 4%, 62%);
|
|
115
|
+
--color-polar-400: hsl(233, 4%, 52%);
|
|
116
|
+
--color-polar-500: hsl(233, 4%, 46%);
|
|
117
|
+
--color-polar-600: hsl(233, 4%, 16%);
|
|
118
|
+
--color-polar-700: hsl(233, 4%, 12%);
|
|
119
|
+
--color-polar-800: hsl(233, 4%, 9.5%);
|
|
120
|
+
--color-polar-900: hsl(233, 4%, 6.5%);
|
|
121
|
+
--color-polar-950: hsl(233, 4%, 3.5%);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* ─── Neutral token theme (radix-vega preset) ───────────────────────────────── */
|
|
125
|
+
:root {
|
|
126
|
+
--background: oklch(1 0 0);
|
|
127
|
+
--foreground: oklch(0.145 0 0);
|
|
128
|
+
--card: oklch(1 0 0);
|
|
129
|
+
--card-foreground: oklch(0.145 0 0);
|
|
130
|
+
--popover: oklch(1 0 0);
|
|
131
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
132
|
+
--primary: oklch(0.205 0 0);
|
|
133
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
134
|
+
--secondary: oklch(0.97 0 0);
|
|
135
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
136
|
+
--muted: oklch(0.97 0 0);
|
|
137
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
138
|
+
--accent: oklch(0.97 0 0);
|
|
139
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
140
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
141
|
+
--border: oklch(0.922 0 0);
|
|
142
|
+
--input: oklch(0.922 0 0);
|
|
143
|
+
--ring: oklch(0.708 0 0);
|
|
144
|
+
--chart-1: oklch(0.87 0 0);
|
|
145
|
+
--chart-2: oklch(0.556 0 0);
|
|
146
|
+
--chart-3: oklch(0.439 0 0);
|
|
147
|
+
--chart-4: oklch(0.371 0 0);
|
|
148
|
+
--chart-5: oklch(0.269 0 0);
|
|
149
|
+
--radius: 0.625rem;
|
|
150
|
+
--sidebar: oklch(0.985 0 0);
|
|
151
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
152
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
153
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
154
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
155
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
156
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
157
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.dark {
|
|
161
|
+
--background: oklch(0.145 0 0);
|
|
162
|
+
--foreground: oklch(0.985 0 0);
|
|
163
|
+
--card: oklch(0.205 0 0);
|
|
164
|
+
--card-foreground: oklch(0.985 0 0);
|
|
165
|
+
--popover: oklch(0.205 0 0);
|
|
166
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
167
|
+
--primary: oklch(0.922 0 0);
|
|
168
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
169
|
+
--secondary: oklch(0.269 0 0);
|
|
170
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
171
|
+
--muted: oklch(0.269 0 0);
|
|
172
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
173
|
+
--accent: oklch(0.269 0 0);
|
|
174
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
175
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
176
|
+
--border: oklch(1 0 0 / 10%);
|
|
177
|
+
--input: oklch(1 0 0 / 15%);
|
|
178
|
+
--ring: oklch(0.556 0 0);
|
|
179
|
+
--chart-1: oklch(0.87 0 0);
|
|
180
|
+
--chart-2: oklch(0.556 0 0);
|
|
181
|
+
--chart-3: oklch(0.439 0 0);
|
|
182
|
+
--chart-4: oklch(0.371 0 0);
|
|
183
|
+
--chart-5: oklch(0.269 0 0);
|
|
184
|
+
--sidebar: oklch(0.205 0 0);
|
|
185
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
186
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
187
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
188
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
189
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
190
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
191
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@layer base {
|
|
195
|
+
* {
|
|
196
|
+
border-color: var(--border);
|
|
197
|
+
}
|
|
198
|
+
body {
|
|
199
|
+
background-color: var(--background);
|
|
200
|
+
color: var(--foreground);
|
|
201
|
+
font-family: var(--font-sans);
|
|
202
|
+
-webkit-font-smoothing: antialiased;
|
|
203
|
+
}
|
|
204
|
+
html.dark { color-scheme: dark; }
|
|
205
|
+
html { color-scheme: light; }
|
|
206
|
+
}
|