tera-system-ui 0.0.24 → 0.0.25
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/components/avatar/Avatar.svelte +43 -43
- package/dist/components/brand-logo/BrandLogo.svelte +31 -31
- package/dist/components/button/Button.svelte +49 -49
- package/dist/components/combobox/Combobox.svelte +8 -8
- package/dist/components/command/command.scss +72 -72
- package/dist/components/command/components/Command.svelte +120 -120
- package/dist/components/command/components/Command.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandEmpty.svelte +30 -30
- package/dist/components/command/components/CommandEmpty.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandGroup.svelte +110 -110
- package/dist/components/command/components/CommandGroup.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandInput.svelte +92 -92
- package/dist/components/command/components/CommandInput.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandItem.svelte +110 -110
- package/dist/components/command/components/CommandItem.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandList.svelte +56 -56
- package/dist/components/command/components/CommandLoading.svelte +28 -28
- package/dist/components/command/components/CommandLoading.svelte.d.ts +1 -1
- package/dist/components/command/components/CommandSeparator.svelte +21 -21
- package/dist/components/command/components/CommandSeparator.svelte.d.ts +1 -1
- package/dist/components/dialog/Dialog.astro +64 -64
- package/dist/components/dialog/Dialog.svelte +109 -109
- package/dist/components/dialog/dialog.scss +115 -115
- package/dist/components/dropdown-menu/components/DropdownMenu.svelte +33 -33
- package/dist/components/dropdown-menu/components/DropdownMenuGroup.svelte +11 -11
- package/dist/components/dropdown-menu/components/DropdownMenuHeader.svelte +11 -11
- package/dist/components/dropdown-menu/components/DropdownMenuItem.svelte +30 -30
- package/dist/components/dropdown-menu/components/DropdownMenuSeparator.svelte +10 -10
- package/dist/components/header/Header.svelte +36 -36
- package/dist/components/header/header.scss +19 -19
- package/dist/components/icons/IconArrowBigRightFilled.svelte +10 -10
- package/dist/components/icons/IconBook.svelte +10 -10
- package/dist/components/icons/IconBookmarkPlus.svelte +10 -10
- package/dist/components/icons/IconCalculator.svelte +10 -10
- package/dist/components/icons/IconCheck.svelte +10 -10
- package/dist/components/icons/IconChevronDown.svelte +10 -10
- package/dist/components/icons/IconCopy.svelte +10 -10
- package/dist/components/icons/IconCopyCheckFilled.svelte +10 -10
- package/dist/components/icons/IconHamburger.svelte +10 -10
- package/dist/components/icons/IconLanguage.svelte +10 -10
- package/dist/components/icons/IconLoader2.svelte +10 -10
- package/dist/components/icons/IconLogout.svelte +10 -10
- package/dist/components/icons/IconMoon.svelte +10 -10
- package/dist/components/icons/IconPointFilled.svelte +10 -10
- package/dist/components/icons/IconSearch.svelte +10 -10
- package/dist/components/icons/IconSettings.svelte +10 -10
- package/dist/components/icons/IconSun.svelte +10 -10
- package/dist/components/icons/IconSwitchHorizontal.svelte +10 -10
- package/dist/components/icons/IconSwitchVertical.svelte +10 -10
- package/dist/components/icons/IconTransform.svelte +10 -10
- package/dist/components/icons/IconX.svelte +10 -10
- package/dist/components/input/Input.svelte +24 -24
- package/dist/components/language-picker-button/LanguagePickerButton.svelte +109 -109
- package/dist/components/light-dark-toggle/LightDarkToggle.svelte +36 -36
- package/dist/components/popover/Popover.svelte +159 -159
- package/dist/components/popover-responsive/PopoverResponsive.svelte +87 -87
- package/dist/components/side-navigation/SideNavigation.svelte +114 -114
- package/dist/components/side-navigation/SideNavigationItem.svelte +17 -17
- package/dist/components/side-navigation/SideNavigationLayout.svelte +19 -19
- package/dist/components/side-navigation/sidenav.scss +149 -149
- package/dist/components/slider/Slider.svelte +181 -181
- package/dist/components/star-rating/StarRating.d.ts +10 -0
- package/dist/components/star-rating/StarRating.js +7 -0
- package/dist/components/star-rating/StarRating.svelte +88 -0
- package/dist/components/star-rating/StarRating.svelte.d.ts +3 -0
- package/dist/components/star-rating/index.d.ts +1 -0
- package/dist/components/star-rating/index.js +1 -0
- package/dist/components/tabs/components/Tabs.svelte +47 -47
- package/dist/components/tabs/components/TabsContent.svelte +34 -34
- package/dist/components/tabs/components/TabsItem.svelte +29 -29
- package/dist/components/tabs/components/TabsList.svelte +41 -41
- package/dist/components/tera-ui-context/TeraUiContext.svelte +28 -28
- package/dist/components/text-area/TextArea.svelte +88 -88
- package/dist/components/user-avatar-with-menu/UserAvatarWithMenu.svelte +67 -67
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/themes/scrollbar.scss +37 -37
- package/dist/themes/tera-ui-base.css +208 -208
- package/dist/themes/tw-preset.cjs +153 -153
- package/package.json +98 -98
- package/scripts/add-component-template.js +120 -120
- package/scripts/generate-ts-index.js +138 -138
|
@@ -1,208 +1,208 @@
|
|
|
1
|
-
@import "scrollbar.scss"; /* Default base style */
|
|
2
|
-
@tailwind base;
|
|
3
|
-
@tailwind components;
|
|
4
|
-
@tailwind utilities;
|
|
5
|
-
|
|
6
|
-
.ripple {
|
|
7
|
-
position: absolute;
|
|
8
|
-
border-radius: 50%;
|
|
9
|
-
transform: scale(0);
|
|
10
|
-
animation: ripple-animation 1s ease-out;
|
|
11
|
-
pointer-events: none;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@keyframes ripple-animation {
|
|
15
|
-
to {
|
|
16
|
-
transform: scale(4);
|
|
17
|
-
opacity: 0;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
body {
|
|
22
|
-
background: theme(colors.neutral.token.1);
|
|
23
|
-
color: theme(colors.neutral.token.13);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
@layer components {
|
|
29
|
-
.border,
|
|
30
|
-
.border-r,
|
|
31
|
-
.border-l,
|
|
32
|
-
.border-t,
|
|
33
|
-
.border-b,
|
|
34
|
-
.border-x,
|
|
35
|
-
.border-y {
|
|
36
|
-
border-color: theme(colors.neutral.token.5);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
@layer utilities {
|
|
42
|
-
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
43
|
-
.hide-scrollbar::-webkit-scrollbar {
|
|
44
|
-
display: none !important;
|
|
45
|
-
}
|
|
46
|
-
/* Hide scrollbar for IE, Edge and Firefox */
|
|
47
|
-
.hide-scrollbar {
|
|
48
|
-
-ms-overflow-style: none !important; /* IE and Edge */
|
|
49
|
-
scrollbar-width: none !important; /* Firefox */
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.skeleton {
|
|
53
|
-
@apply animate-pulse bg-neutral-token-4 rounded h-4 w-full;
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
:root {
|
|
61
|
-
--border-radius-base: 0.25rem;
|
|
62
|
-
--border-radius-container: 0.5rem;
|
|
63
|
-
--tw---alias-color-primary-50: 215 90 96;
|
|
64
|
-
--tw---alias-color-primary-100: 217 91 87;
|
|
65
|
-
--tw---alias-color-primary-200: 217 91 82;
|
|
66
|
-
--tw---alias-color-primary-300: 217 91 73;
|
|
67
|
-
--tw---alias-color-primary-400: 217 91 68;
|
|
68
|
-
--tw---alias-color-primary-500: 217 91 60;
|
|
69
|
-
--tw---alias-color-primary-600: 217 73 55;
|
|
70
|
-
--tw---alias-color-primary-700: 217 61 43;
|
|
71
|
-
--tw---alias-color-primary-800: 217 62 33;
|
|
72
|
-
--tw---alias-color-primary-900: 217 61 25;
|
|
73
|
-
--tw---alias-color-error-50: 0 81 96;
|
|
74
|
-
--tw---alias-color-error-100: 0 84 88;
|
|
75
|
-
--tw---alias-color-error-200: 0 85 82;
|
|
76
|
-
--tw---alias-color-error-300: 0 84 73;
|
|
77
|
-
--tw---alias-color-error-400: 0 84 68;
|
|
78
|
-
--tw---alias-color-error-500: 0 84 60;
|
|
79
|
-
--tw---alias-color-error-600: 0 67 55;
|
|
80
|
-
--tw---alias-color-error-700: 0 56 43;
|
|
81
|
-
--tw---alias-color-error-800: 0 56 33;
|
|
82
|
-
--tw---alias-color-error-900: 0 55 25;
|
|
83
|
-
--tw---alias-color-success-50: 143 57 95;
|
|
84
|
-
--tw---alias-color-success-100: 142 59 83;
|
|
85
|
-
--tw---alias-color-success-200: 142 58 75;
|
|
86
|
-
--tw---alias-color-success-300: 142 58 63;
|
|
87
|
-
--tw---alias-color-success-400: 142 59 56;
|
|
88
|
-
--tw---alias-color-success-500: 142 71 45;
|
|
89
|
-
--tw---alias-color-success-600: 142 70 41;
|
|
90
|
-
--tw---alias-color-success-700: 142 71 32;
|
|
91
|
-
--tw---alias-color-success-800: 142 70 25;
|
|
92
|
-
--tw---alias-color-success-900: 142 71 19;
|
|
93
|
-
--tw---alias-color-neutral-1: 0 0 100;
|
|
94
|
-
--tw---alias-color-neutral-2: 0 0 99;
|
|
95
|
-
--tw---alias-color-neutral-3: 0 0 96;
|
|
96
|
-
--tw---alias-color-neutral-4: 0 0 94;
|
|
97
|
-
--tw---alias-color-neutral-5: 0 0 85;
|
|
98
|
-
--tw---alias-color-neutral-6: 0 0 75;
|
|
99
|
-
--tw---alias-color-neutral-7: 0 0 55;
|
|
100
|
-
--tw---alias-color-neutral-8: 0 0 35;
|
|
101
|
-
--tw---alias-color-neutral-9: 0 0 27;
|
|
102
|
-
--tw---alias-color-neutral-10: 0 0 15;
|
|
103
|
-
--tw---alias-color-neutral-11: 0 0 12;
|
|
104
|
-
--tw---alias-color-neutral-12: 0 0 8;
|
|
105
|
-
--tw---alias-color-neutral-13: 0 0 0;
|
|
106
|
-
--tw---alias-color-warning-50: 25 92 95;
|
|
107
|
-
--tw---alias-color-warning-100: 25 95 85;
|
|
108
|
-
--tw---alias-color-warning-200: 25 95 78;
|
|
109
|
-
--tw---alias-color-warning-300: 24 95 69;
|
|
110
|
-
--tw---alias-color-warning-400: 25 95 63;
|
|
111
|
-
--tw---alias-color-warning-500: 25 95 53;
|
|
112
|
-
--tw---alias-color-warning-600: 25 84 48;
|
|
113
|
-
--tw---alias-color-warning-700: 25 83 38;
|
|
114
|
-
--tw---alias-color-warning-800: 24 84 29;
|
|
115
|
-
--tw---alias-color-warning-900: 24 84 22;
|
|
116
|
-
--tw---alias-color-information-50: 215 90 96;
|
|
117
|
-
--tw---alias-color-information-100: 217 91 87;
|
|
118
|
-
--tw---alias-color-information-200: 217 91 82;
|
|
119
|
-
--tw---alias-color-information-300: 217 91 73;
|
|
120
|
-
--tw---alias-color-information-400: 217 91 68;
|
|
121
|
-
--tw---alias-color-information-500: 217 91 60;
|
|
122
|
-
--tw---alias-color-information-600: 217 73 55;
|
|
123
|
-
--tw---alias-color-information-700: 217 61 43;
|
|
124
|
-
--tw---alias-color-information-800: 217 62 33;
|
|
125
|
-
--tw---alias-color-information-900: 217 61 25;
|
|
126
|
-
--tw---alias-color-secondary-50: 330 80 96;
|
|
127
|
-
--tw---alias-color-secondary-100: 331 81 88;
|
|
128
|
-
--tw---alias-color-secondary-200: 330 81 82;
|
|
129
|
-
--tw---alias-color-secondary-300: 330 81 73;
|
|
130
|
-
--tw---alias-color-secondary-400: 331 81 68;
|
|
131
|
-
--tw---alias-color-secondary-500: 330 81 60;
|
|
132
|
-
--tw---alias-color-secondary-600: 331 65 55;
|
|
133
|
-
--tw---alias-color-secondary-700: 330 53 43;
|
|
134
|
-
--tw---alias-color-secondary-800: 331 53 33;
|
|
135
|
-
--tw---alias-color-secondary-900: 330 53 25;
|
|
136
|
-
--tw---alias-color-brand-500: 212 100 47;
|
|
137
|
-
--tw---token-color-brand-token-5: 212 100 47;
|
|
138
|
-
--tw---token-color-neutral-token-1: 0 0 100;
|
|
139
|
-
--tw---token-color-neutral-token-2: 0 0 99;
|
|
140
|
-
--tw---token-color-neutral-token-3: 0 0 96;
|
|
141
|
-
--tw---token-color-neutral-token-4: 0 0 94;
|
|
142
|
-
--tw---token-color-neutral-token-5: 0 0 85;
|
|
143
|
-
--tw---token-color-neutral-token-6: 0 0 75;
|
|
144
|
-
--tw---token-color-neutral-token-7: 0 0 55;
|
|
145
|
-
--tw---token-color-neutral-token-8: 0 0 35;
|
|
146
|
-
--tw---token-color-neutral-token-9: 0 0 27;
|
|
147
|
-
--tw---token-color-neutral-token-10: 0 0 15;
|
|
148
|
-
--tw---token-color-neutral-token-11: 0 0 12;
|
|
149
|
-
--tw---token-color-neutral-token-12: 0 0 8;
|
|
150
|
-
--tw---token-color-neutral-token-13: 0 0 0;
|
|
151
|
-
--tw---token-color-primary-token-1: 215 90 96;
|
|
152
|
-
--tw---token-color-primary-token-2: 217 91 87;
|
|
153
|
-
--tw---token-color-primary-token-3: 217 91 82;
|
|
154
|
-
--tw---token-color-primary-token-4: 217 91 73;
|
|
155
|
-
--tw---token-color-primary-token-5: 217 91 68;
|
|
156
|
-
--tw---token-color-primary-token-6: 217 91 60;
|
|
157
|
-
--tw---token-color-primary-token-7: 217 73 55;
|
|
158
|
-
--tw---token-color-primary-token-8: 217 61 43;
|
|
159
|
-
--tw---token-color-primary-token-9: 217 62 33;
|
|
160
|
-
--tw---token-color-primary-token-10: 217 61 25;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
:root.dark {
|
|
166
|
-
--tw---token-color-brand-token-5: 212 100 47;
|
|
167
|
-
--tw---token-color-neutral-token-1: 0 0 0;
|
|
168
|
-
--tw---token-color-neutral-token-2: 0 0 8;
|
|
169
|
-
--tw---token-color-neutral-token-3: 0 0 12;
|
|
170
|
-
--tw---token-color-neutral-token-4: 0 0 15;
|
|
171
|
-
--tw---token-color-neutral-token-5: 0 0 27;
|
|
172
|
-
--tw---token-color-neutral-token-6: 0 0 35;
|
|
173
|
-
--tw---token-color-neutral-token-7: 0 0 55;
|
|
174
|
-
--tw---token-color-neutral-token-8: 0 0 75;
|
|
175
|
-
--tw---token-color-neutral-token-9: 0 0 85;
|
|
176
|
-
--tw---token-color-neutral-token-10: 0 0 94;
|
|
177
|
-
--tw---token-color-neutral-token-11: 0 0 96;
|
|
178
|
-
--tw---token-color-neutral-token-12: 0 0 99;
|
|
179
|
-
--tw---token-color-neutral-token-13: 0 0 100;
|
|
180
|
-
--tw---token-color-primary-token-1: 217 61 25;
|
|
181
|
-
--tw---token-color-primary-token-2: 217 62 33;
|
|
182
|
-
--tw---token-color-primary-token-3: 217 61 43;
|
|
183
|
-
--tw---token-color-primary-token-4: 217 73 55;
|
|
184
|
-
--tw---token-color-primary-token-5: 217 91 60;
|
|
185
|
-
--tw---token-color-primary-token-6: 217 91 68;
|
|
186
|
-
--tw---token-color-primary-token-7: 217 91 73;
|
|
187
|
-
--tw---token-color-primary-token-8: 217 91 82;
|
|
188
|
-
--tw---token-color-primary-token-9: 217 91 87;
|
|
189
|
-
--tw---token-color-primary-token-10: 215 90 96;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
/* Base responsive variable */
|
|
195
|
-
:root {
|
|
196
|
-
--header-height: 3rem;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
@media (min-width: theme(screens.md)) {
|
|
200
|
-
:root {
|
|
201
|
-
--header-height: 3.5rem;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
@media (min-width: theme(screens.lg)) {
|
|
206
|
-
:root {
|
|
207
|
-
}
|
|
208
|
-
}
|
|
1
|
+
@import "scrollbar.scss"; /* Default base style */
|
|
2
|
+
@tailwind base;
|
|
3
|
+
@tailwind components;
|
|
4
|
+
@tailwind utilities;
|
|
5
|
+
|
|
6
|
+
.ripple {
|
|
7
|
+
position: absolute;
|
|
8
|
+
border-radius: 50%;
|
|
9
|
+
transform: scale(0);
|
|
10
|
+
animation: ripple-animation 1s ease-out;
|
|
11
|
+
pointer-events: none;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes ripple-animation {
|
|
15
|
+
to {
|
|
16
|
+
transform: scale(4);
|
|
17
|
+
opacity: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
body {
|
|
22
|
+
background: theme(colors.neutral.token.1);
|
|
23
|
+
color: theme(colors.neutral.token.13);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
@layer components {
|
|
29
|
+
.border,
|
|
30
|
+
.border-r,
|
|
31
|
+
.border-l,
|
|
32
|
+
.border-t,
|
|
33
|
+
.border-b,
|
|
34
|
+
.border-x,
|
|
35
|
+
.border-y {
|
|
36
|
+
border-color: theme(colors.neutral.token.5);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
@layer utilities {
|
|
42
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
43
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
44
|
+
display: none !important;
|
|
45
|
+
}
|
|
46
|
+
/* Hide scrollbar for IE, Edge and Firefox */
|
|
47
|
+
.hide-scrollbar {
|
|
48
|
+
-ms-overflow-style: none !important; /* IE and Edge */
|
|
49
|
+
scrollbar-width: none !important; /* Firefox */
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.skeleton {
|
|
53
|
+
@apply animate-pulse bg-neutral-token-4 rounded h-4 w-full;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
:root {
|
|
61
|
+
--border-radius-base: 0.25rem;
|
|
62
|
+
--border-radius-container: 0.5rem;
|
|
63
|
+
--tw---alias-color-primary-50: 215 90 96;
|
|
64
|
+
--tw---alias-color-primary-100: 217 91 87;
|
|
65
|
+
--tw---alias-color-primary-200: 217 91 82;
|
|
66
|
+
--tw---alias-color-primary-300: 217 91 73;
|
|
67
|
+
--tw---alias-color-primary-400: 217 91 68;
|
|
68
|
+
--tw---alias-color-primary-500: 217 91 60;
|
|
69
|
+
--tw---alias-color-primary-600: 217 73 55;
|
|
70
|
+
--tw---alias-color-primary-700: 217 61 43;
|
|
71
|
+
--tw---alias-color-primary-800: 217 62 33;
|
|
72
|
+
--tw---alias-color-primary-900: 217 61 25;
|
|
73
|
+
--tw---alias-color-error-50: 0 81 96;
|
|
74
|
+
--tw---alias-color-error-100: 0 84 88;
|
|
75
|
+
--tw---alias-color-error-200: 0 85 82;
|
|
76
|
+
--tw---alias-color-error-300: 0 84 73;
|
|
77
|
+
--tw---alias-color-error-400: 0 84 68;
|
|
78
|
+
--tw---alias-color-error-500: 0 84 60;
|
|
79
|
+
--tw---alias-color-error-600: 0 67 55;
|
|
80
|
+
--tw---alias-color-error-700: 0 56 43;
|
|
81
|
+
--tw---alias-color-error-800: 0 56 33;
|
|
82
|
+
--tw---alias-color-error-900: 0 55 25;
|
|
83
|
+
--tw---alias-color-success-50: 143 57 95;
|
|
84
|
+
--tw---alias-color-success-100: 142 59 83;
|
|
85
|
+
--tw---alias-color-success-200: 142 58 75;
|
|
86
|
+
--tw---alias-color-success-300: 142 58 63;
|
|
87
|
+
--tw---alias-color-success-400: 142 59 56;
|
|
88
|
+
--tw---alias-color-success-500: 142 71 45;
|
|
89
|
+
--tw---alias-color-success-600: 142 70 41;
|
|
90
|
+
--tw---alias-color-success-700: 142 71 32;
|
|
91
|
+
--tw---alias-color-success-800: 142 70 25;
|
|
92
|
+
--tw---alias-color-success-900: 142 71 19;
|
|
93
|
+
--tw---alias-color-neutral-1: 0 0 100;
|
|
94
|
+
--tw---alias-color-neutral-2: 0 0 99;
|
|
95
|
+
--tw---alias-color-neutral-3: 0 0 96;
|
|
96
|
+
--tw---alias-color-neutral-4: 0 0 94;
|
|
97
|
+
--tw---alias-color-neutral-5: 0 0 85;
|
|
98
|
+
--tw---alias-color-neutral-6: 0 0 75;
|
|
99
|
+
--tw---alias-color-neutral-7: 0 0 55;
|
|
100
|
+
--tw---alias-color-neutral-8: 0 0 35;
|
|
101
|
+
--tw---alias-color-neutral-9: 0 0 27;
|
|
102
|
+
--tw---alias-color-neutral-10: 0 0 15;
|
|
103
|
+
--tw---alias-color-neutral-11: 0 0 12;
|
|
104
|
+
--tw---alias-color-neutral-12: 0 0 8;
|
|
105
|
+
--tw---alias-color-neutral-13: 0 0 0;
|
|
106
|
+
--tw---alias-color-warning-50: 25 92 95;
|
|
107
|
+
--tw---alias-color-warning-100: 25 95 85;
|
|
108
|
+
--tw---alias-color-warning-200: 25 95 78;
|
|
109
|
+
--tw---alias-color-warning-300: 24 95 69;
|
|
110
|
+
--tw---alias-color-warning-400: 25 95 63;
|
|
111
|
+
--tw---alias-color-warning-500: 25 95 53;
|
|
112
|
+
--tw---alias-color-warning-600: 25 84 48;
|
|
113
|
+
--tw---alias-color-warning-700: 25 83 38;
|
|
114
|
+
--tw---alias-color-warning-800: 24 84 29;
|
|
115
|
+
--tw---alias-color-warning-900: 24 84 22;
|
|
116
|
+
--tw---alias-color-information-50: 215 90 96;
|
|
117
|
+
--tw---alias-color-information-100: 217 91 87;
|
|
118
|
+
--tw---alias-color-information-200: 217 91 82;
|
|
119
|
+
--tw---alias-color-information-300: 217 91 73;
|
|
120
|
+
--tw---alias-color-information-400: 217 91 68;
|
|
121
|
+
--tw---alias-color-information-500: 217 91 60;
|
|
122
|
+
--tw---alias-color-information-600: 217 73 55;
|
|
123
|
+
--tw---alias-color-information-700: 217 61 43;
|
|
124
|
+
--tw---alias-color-information-800: 217 62 33;
|
|
125
|
+
--tw---alias-color-information-900: 217 61 25;
|
|
126
|
+
--tw---alias-color-secondary-50: 330 80 96;
|
|
127
|
+
--tw---alias-color-secondary-100: 331 81 88;
|
|
128
|
+
--tw---alias-color-secondary-200: 330 81 82;
|
|
129
|
+
--tw---alias-color-secondary-300: 330 81 73;
|
|
130
|
+
--tw---alias-color-secondary-400: 331 81 68;
|
|
131
|
+
--tw---alias-color-secondary-500: 330 81 60;
|
|
132
|
+
--tw---alias-color-secondary-600: 331 65 55;
|
|
133
|
+
--tw---alias-color-secondary-700: 330 53 43;
|
|
134
|
+
--tw---alias-color-secondary-800: 331 53 33;
|
|
135
|
+
--tw---alias-color-secondary-900: 330 53 25;
|
|
136
|
+
--tw---alias-color-brand-500: 212 100 47;
|
|
137
|
+
--tw---token-color-brand-token-5: 212 100 47;
|
|
138
|
+
--tw---token-color-neutral-token-1: 0 0 100;
|
|
139
|
+
--tw---token-color-neutral-token-2: 0 0 99;
|
|
140
|
+
--tw---token-color-neutral-token-3: 0 0 96;
|
|
141
|
+
--tw---token-color-neutral-token-4: 0 0 94;
|
|
142
|
+
--tw---token-color-neutral-token-5: 0 0 85;
|
|
143
|
+
--tw---token-color-neutral-token-6: 0 0 75;
|
|
144
|
+
--tw---token-color-neutral-token-7: 0 0 55;
|
|
145
|
+
--tw---token-color-neutral-token-8: 0 0 35;
|
|
146
|
+
--tw---token-color-neutral-token-9: 0 0 27;
|
|
147
|
+
--tw---token-color-neutral-token-10: 0 0 15;
|
|
148
|
+
--tw---token-color-neutral-token-11: 0 0 12;
|
|
149
|
+
--tw---token-color-neutral-token-12: 0 0 8;
|
|
150
|
+
--tw---token-color-neutral-token-13: 0 0 0;
|
|
151
|
+
--tw---token-color-primary-token-1: 215 90 96;
|
|
152
|
+
--tw---token-color-primary-token-2: 217 91 87;
|
|
153
|
+
--tw---token-color-primary-token-3: 217 91 82;
|
|
154
|
+
--tw---token-color-primary-token-4: 217 91 73;
|
|
155
|
+
--tw---token-color-primary-token-5: 217 91 68;
|
|
156
|
+
--tw---token-color-primary-token-6: 217 91 60;
|
|
157
|
+
--tw---token-color-primary-token-7: 217 73 55;
|
|
158
|
+
--tw---token-color-primary-token-8: 217 61 43;
|
|
159
|
+
--tw---token-color-primary-token-9: 217 62 33;
|
|
160
|
+
--tw---token-color-primary-token-10: 217 61 25;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
:root.dark {
|
|
166
|
+
--tw---token-color-brand-token-5: 212 100 47;
|
|
167
|
+
--tw---token-color-neutral-token-1: 0 0 0;
|
|
168
|
+
--tw---token-color-neutral-token-2: 0 0 8;
|
|
169
|
+
--tw---token-color-neutral-token-3: 0 0 12;
|
|
170
|
+
--tw---token-color-neutral-token-4: 0 0 15;
|
|
171
|
+
--tw---token-color-neutral-token-5: 0 0 27;
|
|
172
|
+
--tw---token-color-neutral-token-6: 0 0 35;
|
|
173
|
+
--tw---token-color-neutral-token-7: 0 0 55;
|
|
174
|
+
--tw---token-color-neutral-token-8: 0 0 75;
|
|
175
|
+
--tw---token-color-neutral-token-9: 0 0 85;
|
|
176
|
+
--tw---token-color-neutral-token-10: 0 0 94;
|
|
177
|
+
--tw---token-color-neutral-token-11: 0 0 96;
|
|
178
|
+
--tw---token-color-neutral-token-12: 0 0 99;
|
|
179
|
+
--tw---token-color-neutral-token-13: 0 0 100;
|
|
180
|
+
--tw---token-color-primary-token-1: 217 61 25;
|
|
181
|
+
--tw---token-color-primary-token-2: 217 62 33;
|
|
182
|
+
--tw---token-color-primary-token-3: 217 61 43;
|
|
183
|
+
--tw---token-color-primary-token-4: 217 73 55;
|
|
184
|
+
--tw---token-color-primary-token-5: 217 91 60;
|
|
185
|
+
--tw---token-color-primary-token-6: 217 91 68;
|
|
186
|
+
--tw---token-color-primary-token-7: 217 91 73;
|
|
187
|
+
--tw---token-color-primary-token-8: 217 91 82;
|
|
188
|
+
--tw---token-color-primary-token-9: 217 91 87;
|
|
189
|
+
--tw---token-color-primary-token-10: 215 90 96;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
/* Base responsive variable */
|
|
195
|
+
:root {
|
|
196
|
+
--header-height: 3rem;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
@media (min-width: theme(screens.md)) {
|
|
200
|
+
:root {
|
|
201
|
+
--header-height: 3.5rem;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
@media (min-width: theme(screens.lg)) {
|
|
206
|
+
:root {
|
|
207
|
+
}
|
|
208
|
+
}
|