blue-web 1.19.1 → 1.21.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.
@@ -0,0 +1,737 @@
1
+ /*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-white: #fff;
11
+ --spacing: 0.25rem;
12
+ --text-3xl: 1.875rem;
13
+ --text-3xl--line-height: calc(2.25 / 1.875);
14
+ --font-weight-bold: 700;
15
+ --tracking-tight: -0.025em;
16
+ --radius-md: 0.375rem;
17
+ --default-transition-duration: 150ms;
18
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
19
+ --default-font-family: var(--font-sans);
20
+ --default-mono-font-family: var(--font-mono);
21
+ }
22
+ }
23
+ @layer base {
24
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
25
+ box-sizing: border-box;
26
+ margin: 0;
27
+ padding: 0;
28
+ border: 0 solid;
29
+ }
30
+ html, :host {
31
+ line-height: 1.5;
32
+ -webkit-text-size-adjust: 100%;
33
+ tab-size: 4;
34
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
35
+ font-feature-settings: var(--default-font-feature-settings, normal);
36
+ font-variation-settings: var(--default-font-variation-settings, normal);
37
+ -webkit-tap-highlight-color: transparent;
38
+ }
39
+ hr {
40
+ height: 0;
41
+ color: inherit;
42
+ border-top-width: 1px;
43
+ }
44
+ abbr:where([title]) {
45
+ -webkit-text-decoration: underline dotted;
46
+ text-decoration: underline dotted;
47
+ }
48
+ h1, h2, h3, h4, h5, h6 {
49
+ font-size: inherit;
50
+ font-weight: inherit;
51
+ }
52
+ a {
53
+ color: inherit;
54
+ -webkit-text-decoration: inherit;
55
+ text-decoration: inherit;
56
+ }
57
+ b, strong {
58
+ font-weight: bolder;
59
+ }
60
+ code, kbd, samp, pre {
61
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
62
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
63
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
64
+ font-size: 1em;
65
+ }
66
+ small {
67
+ font-size: 80%;
68
+ }
69
+ sub, sup {
70
+ font-size: 75%;
71
+ line-height: 0;
72
+ position: relative;
73
+ vertical-align: baseline;
74
+ }
75
+ sub {
76
+ bottom: -0.25em;
77
+ }
78
+ sup {
79
+ top: -0.5em;
80
+ }
81
+ table {
82
+ text-indent: 0;
83
+ border-color: inherit;
84
+ border-collapse: collapse;
85
+ }
86
+ :-moz-focusring {
87
+ outline: auto;
88
+ }
89
+ progress {
90
+ vertical-align: baseline;
91
+ }
92
+ summary {
93
+ display: list-item;
94
+ }
95
+ ol, ul, menu {
96
+ list-style: none;
97
+ }
98
+ img, svg, video, canvas, audio, iframe, embed, object {
99
+ display: block;
100
+ vertical-align: middle;
101
+ }
102
+ img, video {
103
+ max-width: 100%;
104
+ height: auto;
105
+ }
106
+ button, input, select, optgroup, textarea, ::file-selector-button {
107
+ font: inherit;
108
+ font-feature-settings: inherit;
109
+ font-variation-settings: inherit;
110
+ letter-spacing: inherit;
111
+ color: inherit;
112
+ border-radius: 0;
113
+ background-color: transparent;
114
+ opacity: 1;
115
+ }
116
+ :where(select:is([multiple], [size])) optgroup {
117
+ font-weight: bolder;
118
+ }
119
+ :where(select:is([multiple], [size])) optgroup option {
120
+ padding-inline-start: 20px;
121
+ }
122
+ ::file-selector-button {
123
+ margin-inline-end: 4px;
124
+ }
125
+ ::placeholder {
126
+ opacity: 1;
127
+ }
128
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
129
+ ::placeholder {
130
+ color: currentcolor;
131
+ @supports (color: color-mix(in lab, red, red)) {
132
+ color: color-mix(in oklab, currentcolor 50%, transparent);
133
+ }
134
+ }
135
+ }
136
+ textarea {
137
+ resize: vertical;
138
+ }
139
+ ::-webkit-search-decoration {
140
+ -webkit-appearance: none;
141
+ }
142
+ ::-webkit-date-and-time-value {
143
+ min-height: 1lh;
144
+ text-align: inherit;
145
+ }
146
+ ::-webkit-datetime-edit {
147
+ display: inline-flex;
148
+ }
149
+ ::-webkit-datetime-edit-fields-wrapper {
150
+ padding: 0;
151
+ }
152
+ ::-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 {
153
+ padding-block: 0;
154
+ }
155
+ ::-webkit-calendar-picker-indicator {
156
+ line-height: 1;
157
+ }
158
+ :-moz-ui-invalid {
159
+ box-shadow: none;
160
+ }
161
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
162
+ appearance: button;
163
+ }
164
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
165
+ height: auto;
166
+ }
167
+ [hidden]:where(:not([hidden="until-found"])) {
168
+ display: none !important;
169
+ }
170
+ }
171
+ @layer utilities {
172
+ .collapse {
173
+ visibility: collapse;
174
+ }
175
+ .visible {
176
+ visibility: visible;
177
+ }
178
+ .fixed {
179
+ position: fixed;
180
+ }
181
+ .relative {
182
+ position: relative;
183
+ }
184
+ .static {
185
+ position: static;
186
+ }
187
+ .sticky {
188
+ position: sticky;
189
+ }
190
+ .start-0 {
191
+ inset-inline-start: calc(var(--spacing) * 0);
192
+ }
193
+ .end-0 {
194
+ inset-inline-end: calc(var(--spacing) * 0);
195
+ }
196
+ .top-0 {
197
+ top: calc(var(--spacing) * 0);
198
+ }
199
+ .bottom-0 {
200
+ bottom: calc(var(--spacing) * 0);
201
+ }
202
+ .float-end {
203
+ float: inline-end;
204
+ }
205
+ .container {
206
+ width: 100%;
207
+ @media (width >= 40rem) {
208
+ max-width: 40rem;
209
+ }
210
+ @media (width >= 48rem) {
211
+ max-width: 48rem;
212
+ }
213
+ @media (width >= 64rem) {
214
+ max-width: 64rem;
215
+ }
216
+ @media (width >= 80rem) {
217
+ max-width: 80rem;
218
+ }
219
+ @media (width >= 96rem) {
220
+ max-width: 96rem;
221
+ }
222
+ }
223
+ .m-0 {
224
+ margin: calc(var(--spacing) * 0);
225
+ }
226
+ .mx-1 {
227
+ margin-inline: calc(var(--spacing) * 1);
228
+ }
229
+ .mx-4 {
230
+ margin-inline: calc(var(--spacing) * 4);
231
+ }
232
+ .mx-auto {
233
+ margin-inline: auto;
234
+ }
235
+ .my-1 {
236
+ margin-block: calc(var(--spacing) * 1);
237
+ }
238
+ .my-5 {
239
+ margin-block: calc(var(--spacing) * 5);
240
+ }
241
+ .ms-1 {
242
+ margin-inline-start: calc(var(--spacing) * 1);
243
+ }
244
+ .ms-auto {
245
+ margin-inline-start: auto;
246
+ }
247
+ .me-1 {
248
+ margin-inline-end: calc(var(--spacing) * 1);
249
+ }
250
+ .me-2 {
251
+ margin-inline-end: calc(var(--spacing) * 2);
252
+ }
253
+ .me-3 {
254
+ margin-inline-end: calc(var(--spacing) * 3);
255
+ }
256
+ .me-auto {
257
+ margin-inline-end: auto;
258
+ }
259
+ .mt-1 {
260
+ margin-top: calc(var(--spacing) * 1);
261
+ }
262
+ .mt-3 {
263
+ margin-top: calc(var(--spacing) * 3);
264
+ }
265
+ .mt-4 {
266
+ margin-top: calc(var(--spacing) * 4);
267
+ }
268
+ .mt-5 {
269
+ margin-top: calc(var(--spacing) * 5);
270
+ }
271
+ .mt-auto {
272
+ margin-top: auto;
273
+ }
274
+ .mb-0 {
275
+ margin-bottom: calc(var(--spacing) * 0);
276
+ }
277
+ .mb-1 {
278
+ margin-bottom: calc(var(--spacing) * 1);
279
+ }
280
+ .mb-3 {
281
+ margin-bottom: calc(var(--spacing) * 3);
282
+ }
283
+ .mb-4 {
284
+ margin-bottom: calc(var(--spacing) * 4);
285
+ }
286
+ .mb-5 {
287
+ margin-bottom: calc(var(--spacing) * 5);
288
+ }
289
+ .block {
290
+ display: block;
291
+ }
292
+ .contents {
293
+ display: contents;
294
+ }
295
+ .flex {
296
+ display: flex;
297
+ }
298
+ .grid {
299
+ display: grid;
300
+ }
301
+ .hidden {
302
+ display: none;
303
+ }
304
+ .inline {
305
+ display: inline;
306
+ }
307
+ .inline-block {
308
+ display: inline-block;
309
+ }
310
+ .table {
311
+ display: table;
312
+ }
313
+ .size-full {
314
+ width: 100%;
315
+ height: 100%;
316
+ }
317
+ .h-100 {
318
+ height: calc(var(--spacing) * 100);
319
+ }
320
+ .h-full {
321
+ height: 100%;
322
+ }
323
+ .h-screen {
324
+ height: 100vh;
325
+ }
326
+ .w-100 {
327
+ width: calc(var(--spacing) * 100);
328
+ }
329
+ .w-auto {
330
+ width: auto;
331
+ }
332
+ .flex-grow-1 {
333
+ flex-grow: 1;
334
+ }
335
+ .transform {
336
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
337
+ }
338
+ .resize {
339
+ resize: both;
340
+ }
341
+ .flex-row {
342
+ flex-direction: row;
343
+ }
344
+ .flex-wrap {
345
+ flex-wrap: wrap;
346
+ }
347
+ .items-center {
348
+ align-items: center;
349
+ }
350
+ .justify-center {
351
+ justify-content: center;
352
+ }
353
+ .gap-1 {
354
+ gap: calc(var(--spacing) * 1);
355
+ }
356
+ .gap-2 {
357
+ gap: calc(var(--spacing) * 2);
358
+ }
359
+ .gap-3 {
360
+ gap: calc(var(--spacing) * 3);
361
+ }
362
+ .overflow-auto {
363
+ overflow: auto;
364
+ }
365
+ .overflow-hidden {
366
+ overflow: hidden;
367
+ }
368
+ .overflow-x-hidden {
369
+ overflow-x: hidden;
370
+ }
371
+ .overflow-y-auto {
372
+ overflow-y: auto;
373
+ }
374
+ .rounded {
375
+ border-radius: 0.25rem;
376
+ }
377
+ .rounded-md {
378
+ border-radius: var(--radius-md);
379
+ }
380
+ .border {
381
+ border-style: var(--tw-border-style);
382
+ border-width: 1px;
383
+ }
384
+ .border-b-4 {
385
+ border-bottom-style: var(--tw-border-style);
386
+ border-bottom-width: 4px;
387
+ }
388
+ .bg-white {
389
+ background-color: var(--color-white);
390
+ }
391
+ .p-0 {
392
+ padding: calc(var(--spacing) * 0);
393
+ }
394
+ .p-1 {
395
+ padding: calc(var(--spacing) * 1);
396
+ }
397
+ .p-3 {
398
+ padding: calc(var(--spacing) * 3);
399
+ }
400
+ .p-4 {
401
+ padding: calc(var(--spacing) * 4);
402
+ }
403
+ .p-5 {
404
+ padding: calc(var(--spacing) * 5);
405
+ }
406
+ .px-3 {
407
+ padding-inline: calc(var(--spacing) * 3);
408
+ }
409
+ .py-1 {
410
+ padding-block: calc(var(--spacing) * 1);
411
+ }
412
+ .py-2 {
413
+ padding-block: calc(var(--spacing) * 2);
414
+ }
415
+ .py-3 {
416
+ padding-block: calc(var(--spacing) * 3);
417
+ }
418
+ .py-4 {
419
+ padding-block: calc(var(--spacing) * 4);
420
+ }
421
+ .ps-2 {
422
+ padding-inline-start: calc(var(--spacing) * 2);
423
+ }
424
+ .pe-100 {
425
+ padding-inline-end: calc(var(--spacing) * 100);
426
+ }
427
+ .pb-0 {
428
+ padding-bottom: calc(var(--spacing) * 0);
429
+ }
430
+ .pb-1 {
431
+ padding-bottom: calc(var(--spacing) * 1);
432
+ }
433
+ .text-center {
434
+ text-align: center;
435
+ }
436
+ .text-3xl {
437
+ font-size: var(--text-3xl);
438
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
439
+ }
440
+ .font-bold {
441
+ --tw-font-weight: var(--font-weight-bold);
442
+ font-weight: var(--font-weight-bold);
443
+ }
444
+ .tracking-tight {
445
+ --tw-tracking: var(--tracking-tight);
446
+ letter-spacing: var(--tracking-tight);
447
+ }
448
+ .underline {
449
+ text-decoration-line: underline;
450
+ }
451
+ .opacity-50 {
452
+ opacity: 50%;
453
+ }
454
+ .shadow {
455
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
456
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
457
+ }
458
+ .ring {
459
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
460
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
461
+ }
462
+ .outline {
463
+ outline-style: var(--tw-outline-style);
464
+ outline-width: 1px;
465
+ }
466
+ .blur {
467
+ --tw-blur: blur(8px);
468
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
469
+ }
470
+ .backdrop-filter {
471
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
472
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
473
+ }
474
+ .transition {
475
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
476
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
477
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
478
+ }
479
+ .group-\[\.current\]\/blue-menu-item\:hidden {
480
+ &:is(:where(.group\/blue-menu-item):is(.current) *) {
481
+ display: none;
482
+ }
483
+ }
484
+ .group-\[\:not\(\.current\)\]\/blue-menu-item\:hidden {
485
+ &:is(:where(.group\/blue-menu-item):is(:not(.current)) *) {
486
+ display: none;
487
+ }
488
+ }
489
+ .max-lg\:bg-white {
490
+ @media (width < 64rem) {
491
+ background-color: var(--color-white);
492
+ }
493
+ }
494
+ }
495
+ @property --tw-rotate-x {
496
+ syntax: "*";
497
+ inherits: false;
498
+ }
499
+ @property --tw-rotate-y {
500
+ syntax: "*";
501
+ inherits: false;
502
+ }
503
+ @property --tw-rotate-z {
504
+ syntax: "*";
505
+ inherits: false;
506
+ }
507
+ @property --tw-skew-x {
508
+ syntax: "*";
509
+ inherits: false;
510
+ }
511
+ @property --tw-skew-y {
512
+ syntax: "*";
513
+ inherits: false;
514
+ }
515
+ @property --tw-border-style {
516
+ syntax: "*";
517
+ inherits: false;
518
+ initial-value: solid;
519
+ }
520
+ @property --tw-font-weight {
521
+ syntax: "*";
522
+ inherits: false;
523
+ }
524
+ @property --tw-tracking {
525
+ syntax: "*";
526
+ inherits: false;
527
+ }
528
+ @property --tw-shadow {
529
+ syntax: "*";
530
+ inherits: false;
531
+ initial-value: 0 0 #0000;
532
+ }
533
+ @property --tw-shadow-color {
534
+ syntax: "*";
535
+ inherits: false;
536
+ }
537
+ @property --tw-shadow-alpha {
538
+ syntax: "<percentage>";
539
+ inherits: false;
540
+ initial-value: 100%;
541
+ }
542
+ @property --tw-inset-shadow {
543
+ syntax: "*";
544
+ inherits: false;
545
+ initial-value: 0 0 #0000;
546
+ }
547
+ @property --tw-inset-shadow-color {
548
+ syntax: "*";
549
+ inherits: false;
550
+ }
551
+ @property --tw-inset-shadow-alpha {
552
+ syntax: "<percentage>";
553
+ inherits: false;
554
+ initial-value: 100%;
555
+ }
556
+ @property --tw-ring-color {
557
+ syntax: "*";
558
+ inherits: false;
559
+ }
560
+ @property --tw-ring-shadow {
561
+ syntax: "*";
562
+ inherits: false;
563
+ initial-value: 0 0 #0000;
564
+ }
565
+ @property --tw-inset-ring-color {
566
+ syntax: "*";
567
+ inherits: false;
568
+ }
569
+ @property --tw-inset-ring-shadow {
570
+ syntax: "*";
571
+ inherits: false;
572
+ initial-value: 0 0 #0000;
573
+ }
574
+ @property --tw-ring-inset {
575
+ syntax: "*";
576
+ inherits: false;
577
+ }
578
+ @property --tw-ring-offset-width {
579
+ syntax: "<length>";
580
+ inherits: false;
581
+ initial-value: 0px;
582
+ }
583
+ @property --tw-ring-offset-color {
584
+ syntax: "*";
585
+ inherits: false;
586
+ initial-value: #fff;
587
+ }
588
+ @property --tw-ring-offset-shadow {
589
+ syntax: "*";
590
+ inherits: false;
591
+ initial-value: 0 0 #0000;
592
+ }
593
+ @property --tw-outline-style {
594
+ syntax: "*";
595
+ inherits: false;
596
+ initial-value: solid;
597
+ }
598
+ @property --tw-blur {
599
+ syntax: "*";
600
+ inherits: false;
601
+ }
602
+ @property --tw-brightness {
603
+ syntax: "*";
604
+ inherits: false;
605
+ }
606
+ @property --tw-contrast {
607
+ syntax: "*";
608
+ inherits: false;
609
+ }
610
+ @property --tw-grayscale {
611
+ syntax: "*";
612
+ inherits: false;
613
+ }
614
+ @property --tw-hue-rotate {
615
+ syntax: "*";
616
+ inherits: false;
617
+ }
618
+ @property --tw-invert {
619
+ syntax: "*";
620
+ inherits: false;
621
+ }
622
+ @property --tw-opacity {
623
+ syntax: "*";
624
+ inherits: false;
625
+ }
626
+ @property --tw-saturate {
627
+ syntax: "*";
628
+ inherits: false;
629
+ }
630
+ @property --tw-sepia {
631
+ syntax: "*";
632
+ inherits: false;
633
+ }
634
+ @property --tw-drop-shadow {
635
+ syntax: "*";
636
+ inherits: false;
637
+ }
638
+ @property --tw-drop-shadow-color {
639
+ syntax: "*";
640
+ inherits: false;
641
+ }
642
+ @property --tw-drop-shadow-alpha {
643
+ syntax: "<percentage>";
644
+ inherits: false;
645
+ initial-value: 100%;
646
+ }
647
+ @property --tw-drop-shadow-size {
648
+ syntax: "*";
649
+ inherits: false;
650
+ }
651
+ @property --tw-backdrop-blur {
652
+ syntax: "*";
653
+ inherits: false;
654
+ }
655
+ @property --tw-backdrop-brightness {
656
+ syntax: "*";
657
+ inherits: false;
658
+ }
659
+ @property --tw-backdrop-contrast {
660
+ syntax: "*";
661
+ inherits: false;
662
+ }
663
+ @property --tw-backdrop-grayscale {
664
+ syntax: "*";
665
+ inherits: false;
666
+ }
667
+ @property --tw-backdrop-hue-rotate {
668
+ syntax: "*";
669
+ inherits: false;
670
+ }
671
+ @property --tw-backdrop-invert {
672
+ syntax: "*";
673
+ inherits: false;
674
+ }
675
+ @property --tw-backdrop-opacity {
676
+ syntax: "*";
677
+ inherits: false;
678
+ }
679
+ @property --tw-backdrop-saturate {
680
+ syntax: "*";
681
+ inherits: false;
682
+ }
683
+ @property --tw-backdrop-sepia {
684
+ syntax: "*";
685
+ inherits: false;
686
+ }
687
+ @layer properties {
688
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
689
+ *, ::before, ::after, ::backdrop {
690
+ --tw-rotate-x: initial;
691
+ --tw-rotate-y: initial;
692
+ --tw-rotate-z: initial;
693
+ --tw-skew-x: initial;
694
+ --tw-skew-y: initial;
695
+ --tw-border-style: solid;
696
+ --tw-font-weight: initial;
697
+ --tw-tracking: initial;
698
+ --tw-shadow: 0 0 #0000;
699
+ --tw-shadow-color: initial;
700
+ --tw-shadow-alpha: 100%;
701
+ --tw-inset-shadow: 0 0 #0000;
702
+ --tw-inset-shadow-color: initial;
703
+ --tw-inset-shadow-alpha: 100%;
704
+ --tw-ring-color: initial;
705
+ --tw-ring-shadow: 0 0 #0000;
706
+ --tw-inset-ring-color: initial;
707
+ --tw-inset-ring-shadow: 0 0 #0000;
708
+ --tw-ring-inset: initial;
709
+ --tw-ring-offset-width: 0px;
710
+ --tw-ring-offset-color: #fff;
711
+ --tw-ring-offset-shadow: 0 0 #0000;
712
+ --tw-outline-style: solid;
713
+ --tw-blur: initial;
714
+ --tw-brightness: initial;
715
+ --tw-contrast: initial;
716
+ --tw-grayscale: initial;
717
+ --tw-hue-rotate: initial;
718
+ --tw-invert: initial;
719
+ --tw-opacity: initial;
720
+ --tw-saturate: initial;
721
+ --tw-sepia: initial;
722
+ --tw-drop-shadow: initial;
723
+ --tw-drop-shadow-color: initial;
724
+ --tw-drop-shadow-alpha: 100%;
725
+ --tw-drop-shadow-size: initial;
726
+ --tw-backdrop-blur: initial;
727
+ --tw-backdrop-brightness: initial;
728
+ --tw-backdrop-contrast: initial;
729
+ --tw-backdrop-grayscale: initial;
730
+ --tw-backdrop-hue-rotate: initial;
731
+ --tw-backdrop-invert: initial;
732
+ --tw-backdrop-opacity: initial;
733
+ --tw-backdrop-saturate: initial;
734
+ --tw-backdrop-sepia: initial;
735
+ }
736
+ }
737
+ }