@casinogate/ui 0.0.3

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.
Files changed (91) hide show
  1. package/README.md +171 -0
  2. package/dist/app.d.ts +15 -0
  3. package/dist/app.html +12 -0
  4. package/dist/assets/css/root.css +1057 -0
  5. package/dist/assets/css/theme.css +255 -0
  6. package/dist/assets/icons/check.svg +4 -0
  7. package/dist/assets/icons/chevron-down.svg +4 -0
  8. package/dist/assets/icons/chevron-left.svg +4 -0
  9. package/dist/assets/icons/chevron-right.svg +4 -0
  10. package/dist/assets/icons/chevron-small-down.svg +4 -0
  11. package/dist/assets/icons/chevron-small-left.svg +4 -0
  12. package/dist/assets/icons/chevron-small-right.svg +4 -0
  13. package/dist/assets/icons/chevron-small-up.svg +4 -0
  14. package/dist/assets/icons/chevron-up.svg +4 -0
  15. package/dist/assets/icons/error.svg +4 -0
  16. package/dist/assets/icons/info.svg +4 -0
  17. package/dist/assets/icons/minus.svg +4 -0
  18. package/dist/assets/icons/success.svg +4 -0
  19. package/dist/assets/icons/warning.svg +3 -0
  20. package/dist/components/button/button.component.svelte +173 -0
  21. package/dist/components/button/button.component.svelte.d.ts +239 -0
  22. package/dist/components/button/button.stories.svelte +106 -0
  23. package/dist/components/button/button.stories.svelte.d.ts +19 -0
  24. package/dist/components/button/index.d.ts +233 -0
  25. package/dist/components/button/index.js +4 -0
  26. package/dist/components/checkbox/checkbox.stories.svelte +52 -0
  27. package/dist/components/checkbox/checkbox.stories.svelte.d.ts +18 -0
  28. package/dist/components/checkbox/components/checkbox.group.svelte +3 -0
  29. package/dist/components/checkbox/components/checkbox.group.svelte.d.ts +18 -0
  30. package/dist/components/checkbox/components/checkbox.root.svelte +51 -0
  31. package/dist/components/checkbox/components/checkbox.root.svelte.d.ts +6 -0
  32. package/dist/components/checkbox/index.js +6 -0
  33. package/dist/components/checkbox/model/checkbox-model.svelte.d.ts +16 -0
  34. package/dist/components/checkbox/model/checkbox-model.svelte.js +25 -0
  35. package/dist/components/checkbox/model/index.d.ts +1 -0
  36. package/dist/components/checkbox/model/index.js +1 -0
  37. package/dist/components/checkbox/styles.d.ts +126 -0
  38. package/dist/components/checkbox/styles.js +60 -0
  39. package/dist/components/collapsible/collapsible.stories.svelte +53 -0
  40. package/dist/components/collapsible/collapsible.stories.svelte.d.ts +18 -0
  41. package/dist/components/collapsible/components/collapsaible.content.svelte +40 -0
  42. package/dist/components/collapsible/components/collapsaible.content.svelte.d.ts +5 -0
  43. package/dist/components/collapsible/components/collapsaible.group.svelte +0 -0
  44. package/dist/components/collapsible/components/collapsaible.group.svelte.d.ts +26 -0
  45. package/dist/components/collapsible/components/collapsaible.root.svelte +62 -0
  46. package/dist/components/collapsible/components/collapsaible.root.svelte.d.ts +5 -0
  47. package/dist/components/collapsible/components/collapsaible.svelte.d.ts +44 -0
  48. package/dist/components/collapsible/components/collapsaible.svelte.js +92 -0
  49. package/dist/components/collapsible/components/collapsaible.trigger.svelte +50 -0
  50. package/dist/components/collapsible/components/collapsaible.trigger.svelte.d.ts +8 -0
  51. package/dist/components/collapsible/index.d.ts +9 -0
  52. package/dist/components/collapsible/index.js +8 -0
  53. package/dist/components/collapsible/styles.d.ts +178 -0
  54. package/dist/components/collapsible/styles.js +27 -0
  55. package/dist/components/collapsible/types.d.ts +1 -0
  56. package/dist/components/collapsible/types.js +1 -0
  57. package/dist/components/switch/components/switch.root.svelte +27 -0
  58. package/dist/components/switch/components/switch.root.svelte.d.ts +6 -0
  59. package/dist/components/switch/components/switch.thumb.svelte +17 -0
  60. package/dist/components/switch/components/switch.thumb.svelte.d.ts +5 -0
  61. package/dist/components/switch/index.d.ts +5 -0
  62. package/dist/components/switch/index.js +7 -0
  63. package/dist/components/switch/model/index.d.ts +1 -0
  64. package/dist/components/switch/model/index.js +1 -0
  65. package/dist/components/switch/model/switch-model.svelte.d.ts +12 -0
  66. package/dist/components/switch/model/switch-model.svelte.js +18 -0
  67. package/dist/components/switch/styles.d.ts +74 -0
  68. package/dist/components/switch/styles.js +44 -0
  69. package/dist/components/switch/switch.stories.svelte +48 -0
  70. package/dist/components/switch/switch.stories.svelte.d.ts +18 -0
  71. package/dist/components/toast/toast.component.svelte +149 -0
  72. package/dist/components/toast/toast.component.svelte.d.ts +158 -0
  73. package/dist/components/toast/toast.stories.svelte +96 -0
  74. package/dist/components/toast/toast.stories.svelte.d.ts +19 -0
  75. package/dist/index.d.ts +1 -0
  76. package/dist/index.js +1 -0
  77. package/dist/internal/types/attrs.d.ts +1 -0
  78. package/dist/internal/types/attrs.js +3 -0
  79. package/dist/internal/types/common.d.ts +25 -0
  80. package/dist/internal/types/common.js +1 -0
  81. package/dist/internal/types/composition.d.ts +45 -0
  82. package/dist/internal/types/composition.js +1 -0
  83. package/dist/internal/types/html-attributes.d.ts +48 -0
  84. package/dist/internal/types/html-attributes.js +1 -0
  85. package/dist/internal/utils/arrays.d.ts +1 -0
  86. package/dist/internal/utils/arrays.js +30 -0
  87. package/dist/internal/utils/common.d.ts +6 -0
  88. package/dist/internal/utils/common.js +9 -0
  89. package/dist/internal/utils/tailwindcss.d.ts +3 -0
  90. package/dist/internal/utils/tailwindcss.js +29 -0
  91. package/package.json +75 -0
@@ -0,0 +1,1057 @@
1
+ /*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --cgui-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --cgui-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --cgui-spacing: 0.25rem;
11
+ --cgui-font-weight-normal: 400;
12
+ --cgui-font-weight-medium: 500;
13
+ --cgui-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
14
+ --cgui-default-transition-duration: 150ms;
15
+ --cgui-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
16
+ --cgui-default-font-family: var(--cgui-font-sans);
17
+ --cgui-default-mono-font-family: var(--cgui-font-mono);
18
+ }
19
+ }
20
+ @layer base {
21
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
22
+ box-sizing: border-box;
23
+ margin: 0;
24
+ padding: 0;
25
+ border: 0 solid;
26
+ }
27
+ html, :host {
28
+ line-height: 1.5;
29
+ -webkit-text-size-adjust: 100%;
30
+ tab-size: 4;
31
+ font-family: var(--cgui-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
32
+ font-feature-settings: var(--cgui-default-font-feature-settings, normal);
33
+ font-variation-settings: var(--cgui-default-font-variation-settings, normal);
34
+ -webkit-tap-highlight-color: transparent;
35
+ }
36
+ hr {
37
+ height: 0;
38
+ color: inherit;
39
+ border-top-width: 1px;
40
+ }
41
+ abbr:where([title]) {
42
+ -webkit-text-decoration: underline dotted;
43
+ text-decoration: underline dotted;
44
+ }
45
+ h1, h2, h3, h4, h5, h6 {
46
+ font-size: inherit;
47
+ font-weight: inherit;
48
+ }
49
+ a {
50
+ color: inherit;
51
+ -webkit-text-decoration: inherit;
52
+ text-decoration: inherit;
53
+ }
54
+ b, strong {
55
+ font-weight: bolder;
56
+ }
57
+ code, kbd, samp, pre {
58
+ font-family: var(--cgui-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
59
+ font-feature-settings: var(--cgui-default-mono-font-feature-settings, normal);
60
+ font-variation-settings: var(--cgui-default-mono-font-variation-settings, normal);
61
+ font-size: 1em;
62
+ }
63
+ small {
64
+ font-size: 80%;
65
+ }
66
+ sub, sup {
67
+ font-size: 75%;
68
+ line-height: 0;
69
+ position: relative;
70
+ vertical-align: baseline;
71
+ }
72
+ sub {
73
+ bottom: -0.25em;
74
+ }
75
+ sup {
76
+ top: -0.5em;
77
+ }
78
+ table {
79
+ text-indent: 0;
80
+ border-color: inherit;
81
+ border-collapse: collapse;
82
+ }
83
+ :-moz-focusring {
84
+ outline: auto;
85
+ }
86
+ progress {
87
+ vertical-align: baseline;
88
+ }
89
+ summary {
90
+ display: list-item;
91
+ }
92
+ ol, ul, menu {
93
+ list-style: none;
94
+ }
95
+ img, svg, video, canvas, audio, iframe, embed, object {
96
+ display: block;
97
+ vertical-align: middle;
98
+ }
99
+ img, video {
100
+ max-width: 100%;
101
+ height: auto;
102
+ }
103
+ button, input, select, optgroup, textarea, ::file-selector-button {
104
+ font: inherit;
105
+ font-feature-settings: inherit;
106
+ font-variation-settings: inherit;
107
+ letter-spacing: inherit;
108
+ color: inherit;
109
+ border-radius: 0;
110
+ background-color: transparent;
111
+ opacity: 1;
112
+ }
113
+ :where(select:is([multiple], [size])) optgroup {
114
+ font-weight: bolder;
115
+ }
116
+ :where(select:is([multiple], [size])) optgroup option {
117
+ padding-inline-start: 20px;
118
+ }
119
+ ::file-selector-button {
120
+ margin-inline-end: 4px;
121
+ }
122
+ ::placeholder {
123
+ opacity: 1;
124
+ }
125
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
126
+ ::placeholder {
127
+ color: currentcolor;
128
+ @supports (color: color-mix(in lab, red, red)) {
129
+ color: color-mix(in oklab, currentcolor 50%, transparent);
130
+ }
131
+ }
132
+ }
133
+ textarea {
134
+ resize: vertical;
135
+ }
136
+ ::-webkit-search-decoration {
137
+ -webkit-appearance: none;
138
+ }
139
+ ::-webkit-date-and-time-value {
140
+ min-height: 1lh;
141
+ text-align: inherit;
142
+ }
143
+ ::-webkit-datetime-edit {
144
+ display: inline-flex;
145
+ }
146
+ ::-webkit-datetime-edit-fields-wrapper {
147
+ padding: 0;
148
+ }
149
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
150
+ padding-block: 0;
151
+ }
152
+ :-moz-ui-invalid {
153
+ box-shadow: none;
154
+ }
155
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
156
+ appearance: button;
157
+ }
158
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
159
+ height: auto;
160
+ }
161
+ [hidden]:where(:not([hidden="until-found"])) {
162
+ display: none !important;
163
+ }
164
+ }
165
+ @layer utilities {
166
+ .cgui\:pointer-events-none {
167
+ pointer-events: none;
168
+ }
169
+ .cgui\:absolute {
170
+ position: absolute;
171
+ }
172
+ .cgui\:relative {
173
+ position: relative;
174
+ }
175
+ .cgui\:top-1\/2 {
176
+ top: calc(1/2 * 100%);
177
+ }
178
+ .cgui\:left-1\/2 {
179
+ left: calc(1/2 * 100%);
180
+ }
181
+ .cgui\:flex {
182
+ display: flex;
183
+ }
184
+ .cgui\:hidden {
185
+ display: none;
186
+ }
187
+ .cgui\:inline-flex {
188
+ display: inline-flex;
189
+ }
190
+ .cgui\:size-1\/2 {
191
+ width: calc(1/2 * 100%);
192
+ height: calc(1/2 * 100%);
193
+ }
194
+ .cgui\:size-3 {
195
+ width: calc(var(--cgui-spacing) * 3);
196
+ height: calc(var(--cgui-spacing) * 3);
197
+ }
198
+ .cgui\:size-4 {
199
+ width: calc(var(--cgui-spacing) * 4);
200
+ height: calc(var(--cgui-spacing) * 4);
201
+ }
202
+ .cgui\:size-6 {
203
+ width: calc(var(--cgui-spacing) * 6);
204
+ height: calc(var(--cgui-spacing) * 6);
205
+ }
206
+ .cgui\:size-12 {
207
+ width: calc(var(--cgui-spacing) * 12);
208
+ height: calc(var(--cgui-spacing) * 12);
209
+ }
210
+ .cgui\:size-full {
211
+ width: 100%;
212
+ height: 100%;
213
+ }
214
+ .cgui\:h-3\.5 {
215
+ height: calc(var(--cgui-spacing) * 3.5);
216
+ }
217
+ .cgui\:h-4 {
218
+ height: calc(var(--cgui-spacing) * 4);
219
+ }
220
+ .cgui\:h-5 {
221
+ height: calc(var(--cgui-spacing) * 5);
222
+ }
223
+ .cgui\:h-6 {
224
+ height: calc(var(--cgui-spacing) * 6);
225
+ }
226
+ .cgui\:h-7\.5 {
227
+ height: calc(var(--cgui-spacing) * 7.5);
228
+ }
229
+ .cgui\:h-8 {
230
+ height: calc(var(--cgui-spacing) * 8);
231
+ }
232
+ .cgui\:h-8\.5 {
233
+ height: calc(var(--cgui-spacing) * 8.5);
234
+ }
235
+ .cgui\:h-14 {
236
+ height: calc(var(--cgui-spacing) * 14);
237
+ }
238
+ .cgui\:h-full {
239
+ height: 100%;
240
+ }
241
+ .cgui\:w-2\.5 {
242
+ width: calc(var(--cgui-spacing) * 2.5);
243
+ }
244
+ .cgui\:w-3 {
245
+ width: calc(var(--cgui-spacing) * 3);
246
+ }
247
+ .cgui\:w-4 {
248
+ width: calc(var(--cgui-spacing) * 4);
249
+ }
250
+ .cgui\:w-5 {
251
+ width: calc(var(--cgui-spacing) * 5);
252
+ }
253
+ .cgui\:w-6 {
254
+ width: calc(var(--cgui-spacing) * 6);
255
+ }
256
+ .cgui\:w-7\.5 {
257
+ width: calc(var(--cgui-spacing) * 7.5);
258
+ }
259
+ .cgui\:w-9 {
260
+ width: calc(var(--cgui-spacing) * 9);
261
+ }
262
+ .cgui\:w-11 {
263
+ width: calc(var(--cgui-spacing) * 11);
264
+ }
265
+ .cgui\:w-auto {
266
+ width: auto;
267
+ }
268
+ .cgui\:w-fit {
269
+ width: fit-content;
270
+ }
271
+ .cgui\:w-full {
272
+ width: 100%;
273
+ }
274
+ .cgui\:max-w-80 {
275
+ max-width: calc(var(--cgui-spacing) * 80);
276
+ }
277
+ .cgui\:min-w-42 {
278
+ min-width: calc(var(--cgui-spacing) * 42);
279
+ }
280
+ .cgui\:flex-1 {
281
+ flex: 1;
282
+ }
283
+ .cgui\:shrink-0 {
284
+ flex-shrink: 0;
285
+ }
286
+ .cgui\:-translate-x-1\/2 {
287
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
288
+ translate: var(--tw-translate-x) var(--tw-translate-y);
289
+ }
290
+ .cgui\:-translate-y-1\/2 {
291
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
292
+ translate: var(--tw-translate-x) var(--tw-translate-y);
293
+ }
294
+ .cgui\:cursor-pointer {
295
+ cursor: pointer;
296
+ }
297
+ .cgui\:flex-col {
298
+ flex-direction: column;
299
+ }
300
+ .cgui\:items-center {
301
+ align-items: center;
302
+ }
303
+ .cgui\:justify-center {
304
+ justify-content: center;
305
+ }
306
+ .cgui\:gap-1 {
307
+ gap: calc(var(--cgui-spacing) * 1);
308
+ }
309
+ .cgui\:gap-1\.5 {
310
+ gap: calc(var(--cgui-spacing) * 1.5);
311
+ }
312
+ .cgui\:gap-2 {
313
+ gap: calc(var(--cgui-spacing) * 2);
314
+ }
315
+ .cgui\:overflow-hidden {
316
+ overflow: hidden;
317
+ }
318
+ .cgui\:rounded-\[inherit\] {
319
+ border-radius: inherit;
320
+ }
321
+ .cgui\:rounded-full {
322
+ border-radius: calc(infinity * 1px);
323
+ }
324
+ .cgui\:rounded-lg {
325
+ border-radius: calc(var(--cg-ui-number-lg) * 1px);
326
+ }
327
+ .cgui\:rounded-md {
328
+ border-radius: calc(var(--cg-ui-number-md) * 1px);
329
+ }
330
+ .cgui\:rounded-sm {
331
+ border-radius: calc(var(--cg-ui-number-sm) * 1px);
332
+ }
333
+ .cgui\:rounded-xl {
334
+ border-radius: calc(var(--cg-ui-number-xl) * 1px);
335
+ }
336
+ .cgui\:rounded-xs {
337
+ border-radius: calc(var(--cg-ui-number-xs) * 1px);
338
+ }
339
+ .cgui\:rounded-xxs {
340
+ border-radius: calc(var(--cg-ui-number-xxs) * 1px);
341
+ }
342
+ .cgui\:rounded-xxxs {
343
+ border-radius: calc(var(--cg-ui-number-xxxs) * 1px);
344
+ }
345
+ .cgui\:border {
346
+ border-style: var(--tw-border-style);
347
+ border-width: 1px;
348
+ }
349
+ .cgui\:border-stroke-divider {
350
+ border-color: var(--cg-ui-palette-neutral-20);
351
+ }
352
+ .cgui\:border-stroke-primary {
353
+ border-color: var(--cg-ui-palette-primary-80);
354
+ }
355
+ .cgui\:border-surface-regular {
356
+ border-color: var(--cg-ui-palette-neutral-50);
357
+ }
358
+ .cgui\:bg-primary-80 {
359
+ background-color: var(--cg-ui-palette-primary-80);
360
+ }
361
+ .cgui\:bg-surface-light {
362
+ background-color: var(--cg-ui-palette-neutral-20);
363
+ }
364
+ .cgui\:bg-surface-lightest {
365
+ background-color: var(--cg-ui-palette-neutral-10);
366
+ }
367
+ .cgui\:bg-surface-primary {
368
+ background-color: var(--cg-ui-palette-primary-80);
369
+ }
370
+ .cgui\:bg-surface-regular {
371
+ background-color: var(--cg-ui-palette-neutral-50);
372
+ }
373
+ .cgui\:bg-surface-white {
374
+ background-color: var(--cg-ui-palette-neutral-0);
375
+ }
376
+ .cgui\:bg-transparent {
377
+ background-color: transparent;
378
+ }
379
+ .cgui\:p-0\.5 {
380
+ padding: calc(var(--cgui-spacing) * 0.5);
381
+ }
382
+ .cgui\:p-3 {
383
+ padding: calc(var(--cgui-spacing) * 3);
384
+ }
385
+ .cgui\:px-2 {
386
+ padding-inline: calc(var(--cgui-spacing) * 2);
387
+ }
388
+ .cgui\:py-1\.5 {
389
+ padding-block: calc(var(--cgui-spacing) * 1.5);
390
+ }
391
+ .cgui\:pb-1\.5 {
392
+ padding-bottom: calc(var(--cgui-spacing) * 1.5);
393
+ }
394
+ .cgui\:text-center {
395
+ text-align: center;
396
+ }
397
+ .cgui\:text-left {
398
+ text-align: left;
399
+ }
400
+ .cgui\:text-body-2 {
401
+ font-size: var(--cg-ui-fz-body-2);
402
+ line-height: var(--tw-leading, var(--cg-ui-lh-body-2));
403
+ }
404
+ .cgui\:text-caption-2 {
405
+ font-size: var(--cg-ui-fz-caption-2);
406
+ line-height: var(--tw-leading, var(--cg-ui-lh-caption-2));
407
+ }
408
+ .cgui\:font-medium {
409
+ --tw-font-weight: var(--cgui-font-weight-medium);
410
+ font-weight: var(--cgui-font-weight-medium);
411
+ }
412
+ .cgui\:font-normal {
413
+ --tw-font-weight: var(--cgui-font-weight-normal);
414
+ font-weight: var(--cgui-font-weight-normal);
415
+ }
416
+ .cgui\:text-fg-darkest {
417
+ color: var(--cg-ui-palette-neutral-100);
418
+ }
419
+ .cgui\:text-fg-medium {
420
+ color: var(--cg-ui-palette-neutral-60);
421
+ }
422
+ .cgui\:text-fg-white {
423
+ color: var(--cg-ui-palette-neutral-0);
424
+ }
425
+ .cgui\:text-icon-regular {
426
+ color: var(--cg-ui-palette-neutral-50);
427
+ }
428
+ .cgui\:text-icon-white {
429
+ color: var(--cg-ui-palette-neutral-0);
430
+ }
431
+ .cgui\:text-primary-80 {
432
+ color: var(--cg-ui-palette-primary-80);
433
+ }
434
+ .cgui\:text-state-error {
435
+ color: var(--cg-ui-palette-system-error-100);
436
+ }
437
+ .cgui\:text-state-info {
438
+ color: var(--cg-ui-palette-system-info-100);
439
+ }
440
+ .cgui\:text-state-success {
441
+ color: var(--cg-ui-palette-system-success-100);
442
+ }
443
+ .cgui\:text-state-warning {
444
+ color: var(--cg-ui-palette-system-warning-100);
445
+ }
446
+ .cgui\:underline {
447
+ text-decoration-line: underline;
448
+ }
449
+ .cgui\:opacity-50 {
450
+ opacity: 50%;
451
+ }
452
+ .cgui\:shadow-toast {
453
+ --tw-shadow: var(--cg-ui-shadow-toast);
454
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
455
+ }
456
+ .cgui\:transition-all {
457
+ transition-property: all;
458
+ transition-timing-function: var(--tw-ease, var(--cgui-default-transition-timing-function));
459
+ transition-duration: var(--tw-duration, var(--cgui-default-transition-duration));
460
+ }
461
+ .cgui\:duration-250 {
462
+ --tw-duration: 250ms;
463
+ transition-duration: 250ms;
464
+ }
465
+ .cgui\:duration-300 {
466
+ --tw-duration: 300ms;
467
+ transition-duration: 300ms;
468
+ }
469
+ .cgui\:ease-in-out {
470
+ --tw-ease: var(--cgui-ease-in-out);
471
+ transition-timing-function: var(--cgui-ease-in-out);
472
+ }
473
+ .cgui\:outline-none {
474
+ --tw-outline-style: none;
475
+ outline-style: none;
476
+ }
477
+ .cgui\:select-none {
478
+ -webkit-user-select: none;
479
+ user-select: none;
480
+ }
481
+ .cgui\:before\:pointer-events-none {
482
+ &::before {
483
+ content: var(--tw-content);
484
+ pointer-events: none;
485
+ }
486
+ }
487
+ .cgui\:before\:absolute {
488
+ &::before {
489
+ content: var(--tw-content);
490
+ position: absolute;
491
+ }
492
+ }
493
+ .cgui\:before\:inset-x-0 {
494
+ &::before {
495
+ content: var(--tw-content);
496
+ inset-inline: calc(var(--cgui-spacing) * 0);
497
+ }
498
+ }
499
+ .cgui\:before\:top-0 {
500
+ &::before {
501
+ content: var(--tw-content);
502
+ top: calc(var(--cgui-spacing) * 0);
503
+ }
504
+ }
505
+ .cgui\:before\:block {
506
+ &::before {
507
+ content: var(--tw-content);
508
+ display: block;
509
+ }
510
+ }
511
+ .cgui\:before\:h-1\.5 {
512
+ &::before {
513
+ content: var(--tw-content);
514
+ height: calc(var(--cgui-spacing) * 1.5);
515
+ }
516
+ }
517
+ .cgui\:before\:bg-state-error {
518
+ &::before {
519
+ content: var(--tw-content);
520
+ background-color: var(--cg-ui-palette-system-error-100);
521
+ }
522
+ }
523
+ .cgui\:before\:bg-state-info {
524
+ &::before {
525
+ content: var(--tw-content);
526
+ background-color: var(--cg-ui-palette-system-info-100);
527
+ }
528
+ }
529
+ .cgui\:before\:bg-state-success {
530
+ &::before {
531
+ content: var(--tw-content);
532
+ background-color: var(--cg-ui-palette-system-success-100);
533
+ }
534
+ }
535
+ .cgui\:before\:bg-state-warning {
536
+ &::before {
537
+ content: var(--tw-content);
538
+ background-color: var(--cg-ui-palette-system-warning-100);
539
+ }
540
+ }
541
+ .cgui\:before\:content-\[\"\"\] {
542
+ &::before {
543
+ --tw-content: "";
544
+ content: var(--tw-content);
545
+ }
546
+ }
547
+ .cgui\:hover\:bg-primary-60 {
548
+ &:hover {
549
+ @media (hover: hover) {
550
+ background-color: var(--cg-ui-palette-primary-60);
551
+ }
552
+ }
553
+ }
554
+ .cgui\:hover\:bg-surface-primary-light {
555
+ &:hover {
556
+ @media (hover: hover) {
557
+ background-color: var(--cg-ui-palette-primary-40);
558
+ }
559
+ }
560
+ }
561
+ .cgui\:hover\:text-primary-60 {
562
+ &:hover {
563
+ @media (hover: hover) {
564
+ color: var(--cg-ui-palette-primary-60);
565
+ }
566
+ }
567
+ }
568
+ .cgui\:active\:scale-95 {
569
+ &:active {
570
+ --tw-scale-x: 95%;
571
+ --tw-scale-y: 95%;
572
+ --tw-scale-z: 95%;
573
+ scale: var(--tw-scale-x) var(--tw-scale-y);
574
+ }
575
+ }
576
+ .cgui\:active\:bg-primary-100 {
577
+ &:active {
578
+ background-color: var(--cg-ui-palette-primary-100);
579
+ }
580
+ }
581
+ .cgui\:active\:text-primary-100 {
582
+ &:active {
583
+ color: var(--cg-ui-palette-primary-100);
584
+ }
585
+ }
586
+ .cgui\:disabled\:pointer-events-none {
587
+ &:disabled {
588
+ pointer-events: none;
589
+ }
590
+ }
591
+ .cgui\:disabled\:cursor-not-allowed {
592
+ &:disabled {
593
+ cursor: not-allowed;
594
+ }
595
+ }
596
+ .cgui\:disabled\:opacity-50 {
597
+ &:disabled {
598
+ opacity: 50%;
599
+ }
600
+ }
601
+ .cgui\:data-\[disabled\]\:pointer-events-none {
602
+ &[data-disabled] {
603
+ pointer-events: none;
604
+ }
605
+ }
606
+ .cgui\:data-\[disabled\]\:cursor-not-allowed {
607
+ &[data-disabled] {
608
+ cursor: not-allowed;
609
+ }
610
+ }
611
+ .cgui\:data-\[disabled\]\:opacity-50 {
612
+ &[data-disabled] {
613
+ opacity: 50%;
614
+ }
615
+ }
616
+ .cgui\:data-\[state\=checked\]\:translate-x-\[calc\(100\%\+2px\)\] {
617
+ &[data-state="checked"] {
618
+ --tw-translate-x: calc(100% + 2px);
619
+ translate: var(--tw-translate-x) var(--tw-translate-y);
620
+ }
621
+ }
622
+ .cgui\:data-\[state\=checked\]\:translate-x-full {
623
+ &[data-state="checked"] {
624
+ --tw-translate-x: 100%;
625
+ translate: var(--tw-translate-x) var(--tw-translate-y);
626
+ }
627
+ }
628
+ .cgui\:data-\[state\=checked\]\:border-surface-primary {
629
+ &[data-state="checked"] {
630
+ border-color: var(--cg-ui-palette-primary-80);
631
+ }
632
+ }
633
+ .cgui\:data-\[state\=checked\]\:bg-surface-primary {
634
+ &[data-state="checked"] {
635
+ background-color: var(--cg-ui-palette-primary-80);
636
+ }
637
+ }
638
+ .cgui\:data-\[state\=checked\]\:shadow-switch-thumb {
639
+ &[data-state="checked"] {
640
+ --tw-shadow: var(--cg-ui-shadow-switch-thumb);
641
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
642
+ }
643
+ }
644
+ .cgui\:data-\[state\=indeterminate\]\:border-surface-primary {
645
+ &[data-state="indeterminate"] {
646
+ border-color: var(--cg-ui-palette-primary-80);
647
+ }
648
+ }
649
+ .cgui\:hover\:\[\&_\[data-slot\=icon\]\]\:text-icon-focus {
650
+ &:hover {
651
+ @media (hover: hover) {
652
+ & [data-slot=icon] {
653
+ color: var(--cg-ui-palette-primary-60);
654
+ }
655
+ }
656
+ }
657
+ }
658
+ .cgui\:data-\[state\=open\]\:\[\&_\[data-slot\=icon\]\]\:rotate-90 {
659
+ &[data-state="open"] {
660
+ & [data-slot=icon] {
661
+ rotate: 90deg;
662
+ }
663
+ }
664
+ }
665
+ .cgui\:active\:\[\&_span\]\:w-2\/3 {
666
+ &:active {
667
+ & span {
668
+ width: calc(2/3 * 100%);
669
+ }
670
+ }
671
+ }
672
+ .cgui\:active\:data-\[state\=checked\]\:\[\&_span\]\:translate-x-\[calc\(44\%\+2px\)\] {
673
+ &:active {
674
+ &[data-state="checked"] {
675
+ & span {
676
+ --tw-translate-x: calc(44% + 2px);
677
+ translate: var(--tw-translate-x) var(--tw-translate-y);
678
+ }
679
+ }
680
+ }
681
+ }
682
+ }
683
+ :root {
684
+ --cg-ui-primary-hue: 220;
685
+ --cg-ui-primary-saturation: 80%;
686
+ --cg-ui-palette-primary-100: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 38%, 1);
687
+ --cg-ui-palette-primary-80: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 50%, 1);
688
+ --cg-ui-palette-primary-60: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 64%, 1);
689
+ --cg-ui-palette-primary-40: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 94%, 1);
690
+ --cg-ui-palette-primary-10: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 97%, 1);
691
+ --cg-ui-neutral-hue: 230;
692
+ --cg-ui-neutral-saturation: 20%;
693
+ --cg-ui-palette-neutral-100: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 12%, 1);
694
+ --cg-ui-palette-neutral-80: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 20%, 1);
695
+ --cg-ui-palette-neutral-60: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 40%, 1);
696
+ --cg-ui-palette-neutral-50: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 58%, 1);
697
+ --cg-ui-palette-neutral-40: hsla(230, 20%, 78%, 1);
698
+ --cg-ui-palette-neutral-20: hsla(230, 20%, 95%, 1);
699
+ --cg-ui-palette-neutral-10: hsla(230, 20%, 98%, 1);
700
+ --cg-ui-palette-neutral-0: hsla(0, 0%, 100%, 1);
701
+ --cg-ui-palette-neutral-01: hsla(0, 0%, 100%, 0.1);
702
+ --cg-ui-palette-system-error-100: hsla(2, 100%, 40%, 1);
703
+ --cg-ui-palette-system-error-10: hsla(3, 67%, 93%, 1);
704
+ --cg-ui-palette-system-warning-100: hsla(52, 100%, 50%, 1);
705
+ --cg-ui-palette-system-warning-10: hsla(18, 88%, 94%, 1);
706
+ --cg-ui-palette-system-success-100: hsla(162, 100%, 25%, 1);
707
+ --cg-ui-palette-system-success-10: hsla(162, 64%, 94%, 1);
708
+ --cg-ui-palette-system-info-100: hsla(232, 22%, 29%, 1);
709
+ --cg-ui-palette-system-info-10: hsla(240, 12%, 93%, 1);
710
+ --cg-ui-number-null: 0;
711
+ --cg-ui-number-xxxs: 2;
712
+ --cg-ui-number-xxs: 4;
713
+ --cg-ui-number-xs: 6;
714
+ --cg-ui-number-sm: 8;
715
+ --cg-ui-number-md: 12;
716
+ --cg-ui-number-lg: 16;
717
+ --cg-ui-number-xl: 20;
718
+ --cg-ui-number-2xl: 24;
719
+ --cg-ui-number-xxl: 40;
720
+ --cg-ui-number-2xxl: 48;
721
+ --cg-ui-number-max: 360;
722
+ --cg-ui-shadow-toast: 0px 0px 8px 0px hsla(0, 0%, 0%, 0.2);
723
+ --cg-ui-shadow-switch-thumb: 0px 1px 1px 0px hsla(0, 0%, 0%, 0.25);
724
+ --cg-ui-fz-base: 16;
725
+ --cg-ui-fz-heading: calc(16 / var(--cg-ui-fz-base) * 1rem);
726
+ --cg-ui-lh-heading: calc(22 / var(--cg-ui-fz-base) * 1rem);
727
+ --cg-ui-fz-heading-2: calc(16 / var(--cg-ui-fz-base) * 1rem);
728
+ --cg-ui-lh-heading-2: calc(18 / var(--cg-ui-fz-base) * 1rem);
729
+ --cg-ui-fz-body: calc(14 / var(--cg-ui-fz-base) * 1rem);
730
+ --cg-ui-lh-body: calc(18 / var(--cg-ui-fz-base) * 1rem);
731
+ --cg-ui-fz-body-2: calc(14 / var(--cg-ui-fz-base) * 1rem);
732
+ --cg-ui-lh-body-2: calc(16 / var(--cg-ui-fz-base) * 1rem);
733
+ --cg-ui-fz-caption: calc(12 / var(--cg-ui-fz-base) * 1rem);
734
+ --cg-ui-lh-caption: calc(18 / var(--cg-ui-fz-base) * 1rem);
735
+ --cg-ui-fz-caption-2: calc(12 / var(--cg-ui-fz-base) * 1rem);
736
+ --cg-ui-lh-caption-2: calc(16 / var(--cg-ui-fz-base) * 1rem);
737
+ }
738
+ .dark, [data-theme='dark'] {
739
+ --cg-ui-primary-hue: 160;
740
+ --cg-ui-primary-saturation: 80%;
741
+ --cg-ui-palette-primary-100: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 28%, 1);
742
+ --cg-ui-palette-primary-80: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 40%, 1);
743
+ --cg-ui-palette-primary-60: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 64%, 1);
744
+ --cg-ui-palette-primary-40: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 94%, 1);
745
+ --cg-ui-palette-primary-10: hsla(var(--cg-ui-primary-hue), var(--cg-ui-primary-saturation), 97%, 1);
746
+ --cg-ui-neutral-hue: 225;
747
+ --cg-ui-neutral-saturation: 50%;
748
+ --cg-ui-palette-neutral-100: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 8%, 1);
749
+ --cg-ui-palette-neutral-80: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 12%, 1);
750
+ --cg-ui-palette-neutral-60: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 16%, 1);
751
+ --cg-ui-palette-neutral-50: hsla(var(--cg-ui-neutral-hue), var(--cg-ui-neutral-saturation), 28%, 1);
752
+ --cg-ui-palette-system-error-100: hsla(2, 100%, 40%, 1);
753
+ --cg-ui-palette-system-error-10: hsla(3, 67%, 93%, 1);
754
+ --cg-ui-palette-system-warning-100: hsla(32, 98%, 40%, 1);
755
+ --cg-ui-palette-system-warning-10: hsla(18, 88%, 94%, 1);
756
+ --cg-ui-palette-system-success-100: hsla(162, 100%, 25%, 1);
757
+ --cg-ui-palette-system-success-10: hsla(162, 64%, 94%, 1);
758
+ --cg-ui-palette-system-info-100: hsla(232, 22%, 29%, 1);
759
+ --cg-ui-palette-system-info-10: hsla(240, 12%, 93%, 1);
760
+ }
761
+ @layer base {
762
+ [type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
763
+ appearance: none;
764
+ background-color: #fff;
765
+ border-color: oklch(55.1% 0.027 264.364);
766
+ border-width: 1px;
767
+ border-radius: 0px;
768
+ padding-top: 0.5rem;
769
+ padding-right: 0.75rem;
770
+ padding-bottom: 0.5rem;
771
+ padding-left: 0.75rem;
772
+ font-size: 1rem;
773
+ line-height: 1.5rem;
774
+ --tw-shadow: 0 0 #0000;
775
+ &:focus {
776
+ outline: 2px solid transparent;
777
+ outline-offset: 2px;
778
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
779
+ --tw-ring-offset-width: 0px;
780
+ --tw-ring-offset-color: #fff;
781
+ --tw-ring-color: oklch(54.6% 0.245 262.881);
782
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
783
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
784
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
785
+ border-color: oklch(54.6% 0.245 262.881);
786
+ }
787
+ }
788
+ input::placeholder,textarea::placeholder {
789
+ color: oklch(55.1% 0.027 264.364);
790
+ opacity: 1;
791
+ }
792
+ ::-webkit-datetime-edit-fields-wrapper {
793
+ padding: 0;
794
+ }
795
+ ::-webkit-date-and-time-value {
796
+ min-height: 1.5em;
797
+ }
798
+ ::-webkit-date-and-time-value {
799
+ text-align: inherit;
800
+ }
801
+ ::-webkit-datetime-edit {
802
+ display: inline-flex;
803
+ }
804
+ ::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
805
+ padding-top: 0;
806
+ padding-bottom: 0;
807
+ }
808
+ select {
809
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='oklch(55.1%25 0.027 264.364)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
810
+ background-position: right 0.5rem center;
811
+ background-repeat: no-repeat;
812
+ background-size: 1.5em 1.5em;
813
+ padding-right: 2.5rem;
814
+ print-color-adjust: exact;
815
+ }
816
+ [multiple],[size]:where(select:not([size="1"])) {
817
+ background-image: initial;
818
+ background-position: initial;
819
+ background-repeat: unset;
820
+ background-size: initial;
821
+ padding-right: 0.75rem;
822
+ print-color-adjust: unset;
823
+ }
824
+ [type='checkbox'],[type='radio'] {
825
+ appearance: none;
826
+ padding: 0;
827
+ print-color-adjust: exact;
828
+ display: inline-block;
829
+ vertical-align: middle;
830
+ background-origin: border-box;
831
+ user-select: none;
832
+ flex-shrink: 0;
833
+ height: 1rem;
834
+ width: 1rem;
835
+ color: oklch(54.6% 0.245 262.881);
836
+ background-color: #fff;
837
+ border-color: oklch(55.1% 0.027 264.364);
838
+ border-width: 1px;
839
+ --tw-shadow: 0 0 #0000;
840
+ }
841
+ [type='checkbox'] {
842
+ border-radius: 0px;
843
+ }
844
+ [type='radio'] {
845
+ border-radius: 100%;
846
+ }
847
+ [type='checkbox']:focus,[type='radio']:focus {
848
+ outline: 2px solid transparent;
849
+ outline-offset: 2px;
850
+ --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
851
+ --tw-ring-offset-width: 2px;
852
+ --tw-ring-offset-color: #fff;
853
+ --tw-ring-color: oklch(54.6% 0.245 262.881);
854
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
855
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
856
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
857
+ }
858
+ [type='checkbox']:checked,[type='radio']:checked {
859
+ border-color: transparent;
860
+ background-color: currentColor;
861
+ background-size: 100% 100%;
862
+ background-position: center;
863
+ background-repeat: no-repeat;
864
+ }
865
+ [type='checkbox']:checked {
866
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
867
+ @media (forced-colors: active) {
868
+ appearance: auto;
869
+ }
870
+ }
871
+ [type='radio']:checked {
872
+ background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
873
+ @media (forced-colors: active) {
874
+ appearance: auto;
875
+ }
876
+ }
877
+ [type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
878
+ border-color: transparent;
879
+ background-color: currentColor;
880
+ }
881
+ [type='checkbox']:indeterminate {
882
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
883
+ border-color: transparent;
884
+ background-color: currentColor;
885
+ background-size: 100% 100%;
886
+ background-position: center;
887
+ background-repeat: no-repeat;
888
+ @media (forced-colors: active) {
889
+ appearance: auto;
890
+ }
891
+ }
892
+ [type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
893
+ border-color: transparent;
894
+ background-color: currentColor;
895
+ }
896
+ [type='file'] {
897
+ background: unset;
898
+ border-color: inherit;
899
+ border-width: 0;
900
+ border-radius: 0;
901
+ padding: 0;
902
+ font-size: unset;
903
+ line-height: inherit;
904
+ }
905
+ [type='file']:focus {
906
+ outline: 1px solid ButtonText;
907
+ outline: 1px auto -webkit-focus-ring-color;
908
+ }
909
+ }
910
+ @property --tw-translate-x {
911
+ syntax: "*";
912
+ inherits: false;
913
+ initial-value: 0;
914
+ }
915
+ @property --tw-translate-y {
916
+ syntax: "*";
917
+ inherits: false;
918
+ initial-value: 0;
919
+ }
920
+ @property --tw-translate-z {
921
+ syntax: "*";
922
+ inherits: false;
923
+ initial-value: 0;
924
+ }
925
+ @property --tw-border-style {
926
+ syntax: "*";
927
+ inherits: false;
928
+ initial-value: solid;
929
+ }
930
+ @property --tw-font-weight {
931
+ syntax: "*";
932
+ inherits: false;
933
+ }
934
+ @property --tw-shadow {
935
+ syntax: "*";
936
+ inherits: false;
937
+ initial-value: 0 0 #0000;
938
+ }
939
+ @property --tw-shadow-color {
940
+ syntax: "*";
941
+ inherits: false;
942
+ }
943
+ @property --tw-shadow-alpha {
944
+ syntax: "<percentage>";
945
+ inherits: false;
946
+ initial-value: 100%;
947
+ }
948
+ @property --tw-inset-shadow {
949
+ syntax: "*";
950
+ inherits: false;
951
+ initial-value: 0 0 #0000;
952
+ }
953
+ @property --tw-inset-shadow-color {
954
+ syntax: "*";
955
+ inherits: false;
956
+ }
957
+ @property --tw-inset-shadow-alpha {
958
+ syntax: "<percentage>";
959
+ inherits: false;
960
+ initial-value: 100%;
961
+ }
962
+ @property --tw-ring-color {
963
+ syntax: "*";
964
+ inherits: false;
965
+ }
966
+ @property --tw-ring-shadow {
967
+ syntax: "*";
968
+ inherits: false;
969
+ initial-value: 0 0 #0000;
970
+ }
971
+ @property --tw-inset-ring-color {
972
+ syntax: "*";
973
+ inherits: false;
974
+ }
975
+ @property --tw-inset-ring-shadow {
976
+ syntax: "*";
977
+ inherits: false;
978
+ initial-value: 0 0 #0000;
979
+ }
980
+ @property --tw-ring-inset {
981
+ syntax: "*";
982
+ inherits: false;
983
+ }
984
+ @property --tw-ring-offset-width {
985
+ syntax: "<length>";
986
+ inherits: false;
987
+ initial-value: 0px;
988
+ }
989
+ @property --tw-ring-offset-color {
990
+ syntax: "*";
991
+ inherits: false;
992
+ initial-value: #fff;
993
+ }
994
+ @property --tw-ring-offset-shadow {
995
+ syntax: "*";
996
+ inherits: false;
997
+ initial-value: 0 0 #0000;
998
+ }
999
+ @property --tw-duration {
1000
+ syntax: "*";
1001
+ inherits: false;
1002
+ }
1003
+ @property --tw-ease {
1004
+ syntax: "*";
1005
+ inherits: false;
1006
+ }
1007
+ @property --tw-content {
1008
+ syntax: "*";
1009
+ initial-value: "";
1010
+ inherits: false;
1011
+ }
1012
+ @property --tw-scale-x {
1013
+ syntax: "*";
1014
+ inherits: false;
1015
+ initial-value: 1;
1016
+ }
1017
+ @property --tw-scale-y {
1018
+ syntax: "*";
1019
+ inherits: false;
1020
+ initial-value: 1;
1021
+ }
1022
+ @property --tw-scale-z {
1023
+ syntax: "*";
1024
+ inherits: false;
1025
+ initial-value: 1;
1026
+ }
1027
+ @layer properties {
1028
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1029
+ *, ::before, ::after, ::backdrop {
1030
+ --tw-translate-x: 0;
1031
+ --tw-translate-y: 0;
1032
+ --tw-translate-z: 0;
1033
+ --tw-border-style: solid;
1034
+ --tw-font-weight: initial;
1035
+ --tw-shadow: 0 0 #0000;
1036
+ --tw-shadow-color: initial;
1037
+ --tw-shadow-alpha: 100%;
1038
+ --tw-inset-shadow: 0 0 #0000;
1039
+ --tw-inset-shadow-color: initial;
1040
+ --tw-inset-shadow-alpha: 100%;
1041
+ --tw-ring-color: initial;
1042
+ --tw-ring-shadow: 0 0 #0000;
1043
+ --tw-inset-ring-color: initial;
1044
+ --tw-inset-ring-shadow: 0 0 #0000;
1045
+ --tw-ring-inset: initial;
1046
+ --tw-ring-offset-width: 0px;
1047
+ --tw-ring-offset-color: #fff;
1048
+ --tw-ring-offset-shadow: 0 0 #0000;
1049
+ --tw-duration: initial;
1050
+ --tw-ease: initial;
1051
+ --tw-content: "";
1052
+ --tw-scale-x: 1;
1053
+ --tw-scale-y: 1;
1054
+ --tw-scale-z: 1;
1055
+ }
1056
+ }
1057
+ }