@sirlund/mindset-ui 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/dist/index.css ADDED
@@ -0,0 +1,936 @@
1
+ /* src/components/Button/Button.css */
2
+ .btn {
3
+ display: inline-flex;
4
+ align-items: center;
5
+ justify-content: center;
6
+ gap: var(--gap-xs);
7
+ border: none;
8
+ border-radius: var(--radius-m);
9
+ font-family: var(--font-family-default);
10
+ font-weight: 500;
11
+ text-decoration: none;
12
+ cursor: pointer;
13
+ transition: all 0.2s ease-in-out;
14
+ position: relative;
15
+ outline: none;
16
+ user-select: none;
17
+ white-space: nowrap;
18
+ }
19
+ .btn:focus-visible {
20
+ outline: 2px solid var(--color-accent-default);
21
+ outline-offset: 2px;
22
+ }
23
+ .btn--xsmall {
24
+ padding: var(--gap-3xs) var(--gap-2xs);
25
+ font-size: var(--font-size-xs);
26
+ line-height: 16px;
27
+ min-height: var(--scale-300);
28
+ }
29
+ .btn--small {
30
+ padding: var(--gap-2xs) var(--gap-s);
31
+ font-size: var(--font-size-s);
32
+ line-height: 20px;
33
+ min-height: var(--scale-400);
34
+ }
35
+ .btn--medium {
36
+ padding: var(--gap-xs) var(--gap-m);
37
+ font-size: var(--font-size-m);
38
+ line-height: 24px;
39
+ min-height: var(--scale-500);
40
+ }
41
+ .btn--large {
42
+ padding: var(--gap-s) var(--gap-xl);
43
+ font-size: 18px;
44
+ line-height: 28px;
45
+ min-height: var(--scale-600);
46
+ }
47
+ .btn--primary {
48
+ background-color: var(--color-surface-background-inverted);
49
+ color: var(--color-content-on-inverted-heading);
50
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
51
+ }
52
+ .btn--primary:hover:not(.btn--disabled):not(.btn--loading) {
53
+ background-color: var(--color-surface-background-inverted);
54
+ opacity: 0.9;
55
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
56
+ }
57
+ .btn--primary:active:not(.btn--disabled):not(.btn--loading) {
58
+ background-color: var(--color-surface-background-inverted);
59
+ opacity: 0.8;
60
+ transform: translateY(1px);
61
+ }
62
+ .btn--accent {
63
+ background-color: var(--color-accent-default);
64
+ color: var(--color-content-on-inverted-heading);
65
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
66
+ }
67
+ .btn--accent:hover:not(.btn--disabled):not(.btn--loading) {
68
+ background-color: var(--color-accent-strong);
69
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
70
+ }
71
+ .btn--accent:active:not(.btn--disabled):not(.btn--loading) {
72
+ background-color: var(--color-accent-strong);
73
+ transform: translateY(1px);
74
+ }
75
+ .btn--tertiary {
76
+ background-color: transparent;
77
+ color: var(--color-accent-default);
78
+ border: var(--stroke-thin) solid var(--color-stroke-medium);
79
+ }
80
+ .btn--tertiary:hover:not(.btn--disabled):not(.btn--loading) {
81
+ background-color: var(--color-accent-weaker);
82
+ border-color: var(--color-stroke-medium);
83
+ }
84
+ .btn--tertiary:active:not(.btn--disabled):not(.btn--loading) {
85
+ background-color: var(--color-accent-weak);
86
+ transform: translateY(1px);
87
+ }
88
+ .btn--text {
89
+ background-color: transparent;
90
+ color: var(--color-accent-default);
91
+ border: none;
92
+ box-shadow: none;
93
+ }
94
+ .btn--text:hover:not(.btn--disabled):not(.btn--loading) {
95
+ background-color: var(--color-accent-weaker);
96
+ }
97
+ .btn--text:active:not(.btn--disabled):not(.btn--loading) {
98
+ background-color: var(--color-accent-weak);
99
+ transform: translateY(1px);
100
+ }
101
+ .btn--danger {
102
+ background-color: var(--color-feedback-negative-default);
103
+ color: var(--color-content-on-inverted-heading);
104
+ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
105
+ }
106
+ .btn--danger:hover:not(.btn--disabled):not(.btn--loading) {
107
+ background-color: var(--color-feedback-negative-strong);
108
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
109
+ }
110
+ .btn--danger:active:not(.btn--disabled):not(.btn--loading) {
111
+ background-color: var(--color-feedback-negative-strong);
112
+ transform: translateY(1px);
113
+ }
114
+ .btn--disabled {
115
+ opacity: 0.5;
116
+ cursor: not-allowed;
117
+ pointer-events: none;
118
+ }
119
+ .btn--loading {
120
+ cursor: not-allowed;
121
+ pointer-events: none;
122
+ }
123
+ .btn--full-width {
124
+ width: 100%;
125
+ }
126
+ .btn__content {
127
+ display: flex;
128
+ align-items: center;
129
+ gap: var(--gap-xs);
130
+ }
131
+ .btn__icon {
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: center;
135
+ flex-shrink: 0;
136
+ }
137
+ .btn__icon--start {
138
+ margin-right: 0;
139
+ }
140
+ .btn__icon--end {
141
+ margin-left: 0;
142
+ }
143
+ .btn__spinner {
144
+ display: flex;
145
+ align-items: center;
146
+ justify-content: center;
147
+ flex-shrink: 0;
148
+ margin-right: var(--gap-xs);
149
+ }
150
+ .btn__spinner-icon {
151
+ width: var(--scale-200);
152
+ height: var(--scale-200);
153
+ animation: spin 0.8s linear infinite;
154
+ }
155
+ .btn--xsmall .btn__spinner-icon {
156
+ width: var(--scale-150);
157
+ height: var(--scale-150);
158
+ }
159
+ .btn--small .btn__spinner-icon {
160
+ width: var(--scale-175);
161
+ height: var(--scale-175);
162
+ }
163
+ .btn--large .btn__spinner-icon {
164
+ width: var(--scale-225);
165
+ height: var(--scale-225);
166
+ }
167
+ .btn__spinner-circle {
168
+ stroke-dasharray: 60;
169
+ stroke-dashoffset: 45;
170
+ transform-origin: center;
171
+ }
172
+ @keyframes spin {
173
+ from {
174
+ transform: rotate(0deg);
175
+ }
176
+ to {
177
+ transform: rotate(360deg);
178
+ }
179
+ }
180
+ @media (max-width: 640px) {
181
+ .btn--large {
182
+ padding: var(--gap-2xs) var(--gap-l);
183
+ font-size: var(--font-size-m);
184
+ min-height: var(--scale-550);
185
+ }
186
+ .btn--medium {
187
+ padding: var(--gap-xs) var(--gap-s);
188
+ font-size: var(--font-size-s);
189
+ min-height: var(--scale-500);
190
+ }
191
+ }
192
+
193
+ /* src/components/Card/Card.css */
194
+ .card {
195
+ background-color: var(--color-surface-default);
196
+ border-radius: var(--radius-m);
197
+ border: var(--stroke-thin) solid var(--color-stroke-subtle);
198
+ overflow: hidden;
199
+ width: 100%;
200
+ max-width: var(--max-width-tablet);
201
+ }
202
+ .card__container {
203
+ display: flex;
204
+ flex-direction: column;
205
+ width: 100%;
206
+ }
207
+ .card__header {
208
+ display: flex;
209
+ align-items: center;
210
+ justify-content: space-between;
211
+ padding: var(--gap-l);
212
+ gap: var(--gap-m);
213
+ }
214
+ .card__header-title {
215
+ display: flex;
216
+ align-items: center;
217
+ gap: var(--gap-xs);
218
+ flex: 1;
219
+ }
220
+ .card__header-icon {
221
+ display: flex;
222
+ align-items: center;
223
+ justify-content: center;
224
+ width: var(--scale-400);
225
+ height: var(--scale-400);
226
+ flex-shrink: 0;
227
+ }
228
+ .card__header-text {
229
+ font-family: var(--font-family-default);
230
+ font-size: var(--font-size-s);
231
+ font-weight: 600;
232
+ line-height: 1.1;
233
+ color: var(--color-content-secondary);
234
+ white-space: nowrap;
235
+ }
236
+ .card__header-action {
237
+ height: var(--scale-400);
238
+ min-width: var(--scale-800);
239
+ max-width: var(--max-width-tablet);
240
+ }
241
+ .card__action-button {
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ height: 100%;
246
+ padding: 0 var(--gap-m);
247
+ border: none;
248
+ background: transparent;
249
+ border-radius: var(--radius-s);
250
+ cursor: pointer;
251
+ transition: background-color 0.2s ease;
252
+ }
253
+ .card__action-button:hover {
254
+ background-color: var(--color-surface-layer);
255
+ }
256
+ .card__action-text {
257
+ font-family: var(--font-family-default);
258
+ font-size: var(--font-size-s);
259
+ font-weight: 600;
260
+ line-height: 1.2;
261
+ color: var(--color-accent-default);
262
+ white-space: nowrap;
263
+ }
264
+ .card__body {
265
+ padding: var(--gap-l);
266
+ display: flex;
267
+ flex-direction: column;
268
+ gap: var(--gap-xs);
269
+ }
270
+ .card__content {
271
+ display: flex;
272
+ flex-direction: column;
273
+ gap: var(--gap-l);
274
+ }
275
+ .card__plan {
276
+ display: flex;
277
+ align-items: center;
278
+ gap: var(--gap-s);
279
+ }
280
+ .card__plan-icon {
281
+ width: var(--scale-500);
282
+ height: var(--scale-500);
283
+ flex-shrink: 0;
284
+ }
285
+ .card__plan-name {
286
+ font-family: var(--font-family-default);
287
+ font-size: var(--scale-400);
288
+ font-weight: 600;
289
+ line-height: 1.2;
290
+ color: var(--color-content-primary);
291
+ flex: 1;
292
+ }
293
+ .card__price-section {
294
+ display: flex;
295
+ flex-direction: column;
296
+ gap: var(--gap-xs);
297
+ }
298
+ .card__price {
299
+ display: flex;
300
+ align-items: center;
301
+ gap: var(--gap-xs);
302
+ font-family: var(--font-family-default);
303
+ font-weight: 600;
304
+ }
305
+ .card__price-currency {
306
+ font-size: var(--font-size-l);
307
+ line-height: 1.3;
308
+ color: var(--color-content-secondary);
309
+ }
310
+ .card__price-amount {
311
+ font-size: var(--font-size-xl);
312
+ line-height: 1.2;
313
+ color: var(--color-content-primary);
314
+ }
315
+ .card__price-period {
316
+ font-size: var(--font-size-l);
317
+ line-height: 1.3;
318
+ color: var(--color-content-secondary);
319
+ width: var(--scale-1750);
320
+ }
321
+ .card__seats {
322
+ display: flex;
323
+ flex-direction: column;
324
+ gap: var(--gap-xs);
325
+ }
326
+ .card__seats-divider {
327
+ height: var(--stroke-thin);
328
+ background-color: var(--color-stroke-subtle);
329
+ margin: var(--gap-xs) 0;
330
+ }
331
+ .card__seats-info {
332
+ display: flex;
333
+ align-items: center;
334
+ justify-content: space-between;
335
+ padding: 0;
336
+ }
337
+ .card__seats-count {
338
+ display: flex;
339
+ align-items: center;
340
+ gap: var(--gap-xs);
341
+ font-family: var(--font-family-default);
342
+ font-size: var(--font-size-s);
343
+ font-weight: 600;
344
+ line-height: 1.1;
345
+ color: var(--color-content-tertiary);
346
+ flex: 1;
347
+ }
348
+ .card__seats-teams {
349
+ display: flex;
350
+ align-items: center;
351
+ gap: var(--gap-xs);
352
+ }
353
+ .card__seats-multiplier {
354
+ font-size: var(--font-size-l);
355
+ line-height: 1.3;
356
+ color: var(--color-content-secondary);
357
+ }
358
+ .card__seats-number {
359
+ font-size: var(--font-size-xl);
360
+ line-height: 1.2;
361
+ color: var(--color-content-primary);
362
+ }
363
+ .card__seats-text {
364
+ font-size: var(--font-size-l);
365
+ line-height: 1.3;
366
+ color: var(--color-content-secondary);
367
+ }
368
+ .card__seats-edit {
369
+ display: flex;
370
+ align-items: center;
371
+ justify-content: center;
372
+ height: var(--scale-400);
373
+ padding: 0 var(--gap-3xs);
374
+ border: none;
375
+ background: transparent;
376
+ border-radius: var(--radius-s);
377
+ cursor: pointer;
378
+ transition: background-color 0.2s ease;
379
+ }
380
+ .card__seats-edit:hover {
381
+ background-color: var(--color-surface-layer);
382
+ }
383
+ .card__seats-edit span {
384
+ font-family: var(--font-family-default);
385
+ font-size: var(--font-size-s);
386
+ font-weight: 600;
387
+ line-height: 1.2;
388
+ color: var(--color-accent-default);
389
+ }
390
+ .card__seats-upgrade {
391
+ font-family: var(--font-family-default);
392
+ font-size: var(--font-size-xs);
393
+ font-weight: 400;
394
+ line-height: 1.2;
395
+ color: var(--color-content-tertiary);
396
+ text-align: right;
397
+ width: var(--scale-1600);
398
+ }
399
+ .card__footer {
400
+ background-color: var(--color-surface-layer);
401
+ display: flex;
402
+ align-items: center;
403
+ justify-content: space-between;
404
+ padding: var(--gap-m) var(--gap-l);
405
+ gap: var(--gap-m);
406
+ border-radius: 0 0 var(--radius-m) var(--radius-m);
407
+ }
408
+ .card__footer-left {
409
+ display: flex;
410
+ align-items: center;
411
+ gap: var(--gap-xs);
412
+ flex: 1;
413
+ }
414
+ .card__footer-price {
415
+ display: flex;
416
+ align-items: center;
417
+ gap: var(--gap-3xs);
418
+ font-family: var(--font-family-default);
419
+ font-weight: 600;
420
+ }
421
+ .card__footer-currency {
422
+ font-size: var(--font-size-xl);
423
+ line-height: 1.2;
424
+ color: var(--color-content-secondary);
425
+ }
426
+ .card__footer-amount {
427
+ font-size: var(--scale-400);
428
+ line-height: 1.2;
429
+ color: var(--color-content-primary);
430
+ }
431
+ .card__footer-label {
432
+ font-family: var(--font-family-default);
433
+ font-size: var(--font-size-s);
434
+ font-weight: 400;
435
+ line-height: 1.2;
436
+ color: var(--color-content-primary);
437
+ flex: 1;
438
+ }
439
+ .card__footer-right {
440
+ display: flex;
441
+ flex-direction: column;
442
+ align-items: flex-end;
443
+ justify-content: center;
444
+ min-width: var(--scale-1250);
445
+ }
446
+ .card__footer-renewal {
447
+ font-family: var(--font-family-default);
448
+ font-size: var(--font-size-s);
449
+ font-weight: 400;
450
+ line-height: 1.2;
451
+ color: var(--color-content-secondary);
452
+ }
453
+ .card__footer-date {
454
+ font-family: var(--font-family-default);
455
+ font-size: var(--font-size-s);
456
+ font-weight: 400;
457
+ line-height: 1.2;
458
+ color: var(--color-content-secondary);
459
+ }
460
+ .plan-icon {
461
+ position: relative;
462
+ width: 100%;
463
+ height: 100%;
464
+ }
465
+ .plan-icon__square {
466
+ position: absolute;
467
+ background-color: var(--color-surface-layer-strong);
468
+ border-radius: var(--radius-xs);
469
+ }
470
+ .plan-icon--starter .plan-icon__square--left {
471
+ top: 27.5%;
472
+ left: 0;
473
+ right: 55%;
474
+ bottom: 27.5%;
475
+ }
476
+ .plan-icon--starter .plan-icon__square--right {
477
+ top: 27.5%;
478
+ left: 55%;
479
+ right: 0;
480
+ bottom: 27.5%;
481
+ }
482
+ .plan-icon--individual .plan-icon__square--top-left {
483
+ top: 0;
484
+ left: 0;
485
+ right: 55%;
486
+ bottom: 55%;
487
+ }
488
+ .plan-icon--individual .plan-icon__square--bottom-left {
489
+ top: 55%;
490
+ left: 0;
491
+ right: 55%;
492
+ bottom: 0;
493
+ }
494
+ .plan-icon--individual .plan-icon__square--top-right {
495
+ top: 0;
496
+ left: 55%;
497
+ right: 0;
498
+ bottom: 55%;
499
+ }
500
+ .plan-icon--individual .plan-icon__square--bottom-right {
501
+ top: 55%;
502
+ left: 55%;
503
+ right: 0;
504
+ bottom: 0;
505
+ }
506
+ .plan-icon--teams .plan-icon__square--top-left {
507
+ top: 0;
508
+ left: 0;
509
+ right: 70%;
510
+ bottom: 70%;
511
+ }
512
+ .plan-icon--teams .plan-icon__square--middle-left {
513
+ top: 35%;
514
+ left: 0;
515
+ right: 70%;
516
+ bottom: 35%;
517
+ }
518
+ .plan-icon--teams .plan-icon__square--bottom-center {
519
+ top: 70%;
520
+ left: 35%;
521
+ right: 35%;
522
+ bottom: 0;
523
+ }
524
+ .plan-icon--teams .plan-icon__square--top-center {
525
+ top: 0;
526
+ left: 35%;
527
+ right: 35%;
528
+ bottom: 70%;
529
+ }
530
+ .plan-icon--teams .plan-icon__square--middle-right {
531
+ top: 35%;
532
+ left: 70%;
533
+ right: 0;
534
+ bottom: 35%;
535
+ }
536
+ .plan-icon--teams .plan-icon__square--center {
537
+ top: 35%;
538
+ left: 35%;
539
+ right: 35%;
540
+ bottom: 35%;
541
+ }
542
+ .plan-icon--teams .plan-icon__square--bottom-right {
543
+ top: 70%;
544
+ left: 70%;
545
+ right: 0;
546
+ bottom: 0;
547
+ }
548
+ @media (max-width: 640px) {
549
+ .card {
550
+ max-width: 100%;
551
+ }
552
+ .card__header {
553
+ padding: var(--gap-m);
554
+ gap: var(--gap-s);
555
+ }
556
+ .card__body {
557
+ padding: var(--gap-m);
558
+ }
559
+ .card__footer {
560
+ padding: var(--gap-s) var(--gap-m);
561
+ }
562
+ .card__plan-name {
563
+ font-size: var(--scale-350);
564
+ }
565
+ .card__price-amount {
566
+ font-size: var(--font-size-l);
567
+ }
568
+ .card__footer-amount {
569
+ font-size: var(--scale-350);
570
+ }
571
+ }
572
+
573
+ /* src/components/Icon/Icon.css */
574
+ .icon {
575
+ display: inline-flex;
576
+ align-items: center;
577
+ justify-content: center;
578
+ flex-shrink: 0;
579
+ user-select: none;
580
+ cursor: default;
581
+ }
582
+ .icon svg {
583
+ display: block;
584
+ width: 100%;
585
+ height: 100%;
586
+ }
587
+ .icon--xs {
588
+ width: var(--scale-200);
589
+ height: var(--scale-200);
590
+ }
591
+ .icon--s {
592
+ width: var(--scale-250);
593
+ height: var(--scale-250);
594
+ }
595
+ .icon--m {
596
+ width: var(--scale-300);
597
+ height: var(--scale-300);
598
+ }
599
+ .icon--l {
600
+ width: var(--scale-400);
601
+ height: var(--scale-400);
602
+ }
603
+ .icon[onclick] {
604
+ cursor: pointer;
605
+ transition: opacity 0.2s ease;
606
+ }
607
+ .icon[onclick]:hover {
608
+ opacity: 0.7;
609
+ }
610
+ .icon[onclick]:active {
611
+ opacity: 0.5;
612
+ }
613
+ .icon--primary {
614
+ color: var(--color-content-primary);
615
+ }
616
+ .icon--secondary {
617
+ color: var(--color-content-secondary);
618
+ }
619
+ .icon--accent {
620
+ color: var(--color-accent-default);
621
+ }
622
+ .icon--success {
623
+ color: var(--color-feedback-positive-default);
624
+ }
625
+ .icon--warning {
626
+ color: var(--color-feedback-warning-default);
627
+ }
628
+ .icon--error {
629
+ color: var(--color-feedback-negative-default);
630
+ }
631
+ .icon--white {
632
+ color: var(--color-content-on-inverted-heading);
633
+ }
634
+ @media (max-width: 640px) {
635
+ .icon--l {
636
+ width: var(--scale-350);
637
+ height: var(--scale-350);
638
+ }
639
+ .icon--m {
640
+ width: var(--scale-275);
641
+ height: var(--scale-275);
642
+ }
643
+ }
644
+
645
+ /* src/tokens/tokens.css */
646
+ :root {
647
+ --scale-0: 0px;
648
+ --scale-12-5: 1px;
649
+ --scale-25: 2px;
650
+ --scale-50: 4px;
651
+ --scale-75: 6px;
652
+ --scale-100: 8px;
653
+ --scale-150: 12px;
654
+ --scale-175: 14px;
655
+ --scale-200: 16px;
656
+ --scale-250: 20px;
657
+ --scale-300: 24px;
658
+ --scale-400: 32px;
659
+ --scale-500: 40px;
660
+ --scale-600: 48px;
661
+ --scale-700: 56px;
662
+ --scale-800: 64px;
663
+ --scale-900: 72px;
664
+ --scale-1000: 80px;
665
+ --scale-2000: 160px;
666
+ --scale-2500: 200px;
667
+ --font-family-default:
668
+ "Inter",
669
+ -apple-system,
670
+ BlinkMacSystemFont,
671
+ "Segoe UI",
672
+ system-ui,
673
+ sans-serif;
674
+ --font-family-mono:
675
+ "Fira Code",
676
+ "Monaco",
677
+ "Courier New",
678
+ monospace;
679
+ --font-size-xs: var(--scale-150);
680
+ --font-size-s: var(--scale-175);
681
+ --font-size-m: var(--scale-200);
682
+ --font-size-l: var(--scale-250);
683
+ --font-size-xl: var(--scale-300);
684
+ --gap-none: var(--scale-0);
685
+ --gap-3xs: var(--scale-25);
686
+ --gap-2xs: var(--scale-50);
687
+ --gap-xs: var(--scale-100);
688
+ --gap-s: var(--scale-150);
689
+ --gap-m: var(--scale-200);
690
+ --gap-l: var(--scale-250);
691
+ --gap-xl: var(--scale-300);
692
+ --gap-2xl: var(--scale-400);
693
+ --gap-3xl: var(--scale-500);
694
+ --gap-4xl: var(--scale-600);
695
+ --gap-5xl: var(--scale-700);
696
+ --gap-6xl: var(--scale-800);
697
+ --gap-7xl: var(--scale-1000);
698
+ --radius-none: 0px;
699
+ --radius-xs: var(--scale-50);
700
+ --radius-s: var(--scale-75);
701
+ --radius-m: var(--scale-100);
702
+ --radius-l: var(--scale-150);
703
+ --radius-xl: var(--scale-200);
704
+ --radius-rounded: 9999px;
705
+ --stroke-none: 0px;
706
+ --stroke-thin: 1px;
707
+ --stroke-light: 1.25px;
708
+ --stroke-medium: 1.5px;
709
+ --stroke-large: 2px;
710
+ --max-width-mobile: 480px;
711
+ --max-width-tablet-portrait: 768px;
712
+ --max-width-tablet-landscape: 1024px;
713
+ --max-width-desktop: 1440px;
714
+ --max-width-desktop-lg: 1600px;
715
+ --max-width-desktop-xl: 1980px;
716
+ --color-base-black: rgb(18, 18, 19);
717
+ --color-base-white: rgb(254, 254, 255);
718
+ --color-grey-100: rgb(246, 246, 247);
719
+ --color-grey-200: rgb(234, 234, 234);
720
+ --color-grey-300: rgb(204, 204, 205);
721
+ --color-grey-400: rgb(153, 153, 154);
722
+ --color-grey-500: rgb(109, 109, 110);
723
+ --color-grey-600: rgb(63, 63, 70);
724
+ --color-grey-700: rgb(41, 41, 42);
725
+ --color-blue-100: rgb(232, 243, 255);
726
+ --color-blue-200: rgb(180, 211, 255);
727
+ --color-blue-300: rgb(76, 150, 255);
728
+ --color-blue-400: rgb(0, 105, 255);
729
+ --color-blue-500: rgb(0, 75, 183);
730
+ --color-blue-600: rgb(0, 46, 111);
731
+ --color-blue-700: rgb(0, 31, 75);
732
+ --color-red-100: rgb(255, 243, 241);
733
+ --color-red-200: rgb(254, 209, 201);
734
+ --color-red-300: rgb(237, 115, 99);
735
+ --color-red-400: rgb(205, 73, 55);
736
+ --color-red-500: rgb(189, 54, 36);
737
+ --color-red-600: rgb(168, 32, 13);
738
+ --color-red-700: rgb(128, 20, 5);
739
+ --color-green-100: rgb(240, 254, 241);
740
+ --color-green-200: rgb(204, 238, 206);
741
+ --color-green-300: rgb(104, 178, 111);
742
+ --color-green-400: rgb(52, 134, 60);
743
+ --color-green-500: rgb(18, 121, 29);
744
+ --color-green-600: rgb(8, 93, 17);
745
+ --color-green-700: rgb(3, 65, 10);
746
+ --color-yellow-100: rgb(255, 249, 227);
747
+ --color-yellow-200: rgb(253, 239, 190);
748
+ --color-yellow-300: rgb(245, 218, 117);
749
+ --color-yellow-400: rgb(237, 200, 67);
750
+ --color-yellow-500: rgb(177, 142, 14);
751
+ --color-yellow-600: rgb(129, 101, 0);
752
+ --color-yellow-700: rgb(87, 68, 0);
753
+ --color-pink-100: rgb(252, 228, 236);
754
+ --color-pink-200: rgb(246, 179, 200);
755
+ --color-pink-300: rgb(241, 130, 165);
756
+ --color-pink-400: rgb(235, 81, 129);
757
+ --color-pink-500: rgb(169, 58, 93);
758
+ --color-pink-600: rgb(102, 35, 56);
759
+ --color-pink-700: rgb(69, 24, 38);
760
+ --color-jade-100: rgb(223, 247, 237);
761
+ --color-jade-200: rgb(164, 232, 205);
762
+ --color-jade-300: rgb(104, 217, 172);
763
+ --color-jade-400: rgb(45, 202, 140);
764
+ --color-jade-500: rgb(32, 145, 100);
765
+ --color-jade-600: rgb(20, 88, 61);
766
+ --color-jade-700: rgb(13, 59, 41);
767
+ --color-violet-100: rgb(235, 230, 246);
768
+ --color-violet-200: rgb(197, 183, 228);
769
+ --color-violet-300: rgb(160, 136, 211);
770
+ --color-violet-400: rgb(122, 89, 194);
771
+ --color-violet-500: rgb(88, 64, 139);
772
+ --color-violet-600: rgb(53, 39, 84);
773
+ --color-violet-700: rgb(36, 26, 57);
774
+ --color-amber-100: rgb(251, 239, 225);
775
+ --color-amber-200: rgb(243, 210, 170);
776
+ --color-amber-300: rgb(236, 181, 114);
777
+ --color-amber-400: rgb(228, 152, 59);
778
+ --color-amber-500: rgb(164, 109, 42);
779
+ --color-amber-600: rgb(99, 66, 26);
780
+ --color-amber-700: rgb(67, 45, 17);
781
+ --color-teal-100: rgb(227, 239, 243);
782
+ --color-teal-200: rgb(177, 210, 220);
783
+ --color-teal-300: rgb(126, 180, 197);
784
+ --color-teal-400: rgb(75, 151, 174);
785
+ --color-teal-500: rgb(54, 108, 125);
786
+ --color-teal-600: rgb(33, 66, 76);
787
+ --color-teal-700: rgb(22, 44, 51);
788
+ --color-alpha-black-100: rgba(18, 18, 19, 0.1);
789
+ --color-alpha-black-200: rgba(18, 18, 19, 0.2);
790
+ --color-alpha-black-300: rgba(18, 18, 19, 0.25);
791
+ --color-alpha-black-400: rgba(18, 18, 19, 0.4);
792
+ --color-alpha-black-500: rgba(18, 18, 19, 0.5);
793
+ --color-alpha-black-600: rgba(18, 18, 19, 0.6);
794
+ --color-alpha-black-700: rgba(18, 18, 19, 0.7);
795
+ --color-alpha-black-800: rgba(18, 18, 19, 0.85);
796
+ --color-alpha-white-100: rgba(254, 254, 255, 0.2);
797
+ --color-alpha-white-200: rgba(254, 254, 255, 0.3);
798
+ --color-alpha-white-300: rgba(254, 254, 255, 0.4);
799
+ --color-alpha-white-400: rgba(254, 254, 255, 0.5);
800
+ --color-alpha-white-500: rgba(254, 254, 255, 0.6);
801
+ --color-alpha-white-600: rgba(254, 254, 255, 0.7);
802
+ --color-alpha-white-700: rgba(254, 254, 255, 0.8);
803
+ --color-alpha-white-800: rgba(254, 254, 255, 0.9);
804
+ --color-accent-default: var(--color-blue-400);
805
+ --color-accent-subtle: var(--color-blue-300);
806
+ --color-accent-strong: var(--color-blue-600);
807
+ --color-accent-lighter: var(--color-blue-100);
808
+ --color-accent-light: var(--color-blue-200);
809
+ --color-primary-default: var(--color-base-black);
810
+ --color-primary-inverted: var(--color-base-white);
811
+ --color-primary-subtle: var(--color-grey-500);
812
+ --color-primary-light: var(--color-grey-200);
813
+ --color-surface-background: var(--color-base-white);
814
+ --color-surface-background-inverted: var(--color-base-black);
815
+ --color-surface-background-inverted-alpha: var(--color-alpha-black-800);
816
+ --color-surface-layer: var(--color-grey-100);
817
+ --color-surface-layer-strong: var(--color-grey-200);
818
+ --color-surface-layer-stronger: var(--color-grey-300);
819
+ --color-surface-elevated: var(--color-base-white);
820
+ --color-surface-elevated-inverted: var(--color-base-black);
821
+ --color-surface-accent: var(--color-blue-400);
822
+ --color-surface-input: var(--color-alpha-white-500);
823
+ --color-content-heading: var(--color-base-black);
824
+ --color-content-primary: var(--color-grey-700);
825
+ --color-content-secondary: var(--color-grey-500);
826
+ --color-content-disabled: var(--color-grey-400);
827
+ --color-content-inverted: var(--color-base-white);
828
+ --color-content-accent: var(--color-blue-400);
829
+ --color-content-error: var(--color-red-400);
830
+ --color-content-success: var(--color-green-400);
831
+ --color-content-warning: var(--color-yellow-400);
832
+ --color-content-on-inverted-heading: var(--color-base-white);
833
+ --color-content-on-inverted-primary: var(--color-grey-100);
834
+ --color-content-on-inverted-secondary: var(--color-grey-400);
835
+ --color-content-on-inverted-disabled: var(--color-grey-500);
836
+ --color-content-on-inverted-accent: var(--color-blue-300);
837
+ --color-icon-primary: var(--color-grey-700);
838
+ --color-icon-secondary: var(--color-grey-500);
839
+ --color-icon-disabled: var(--color-grey-400);
840
+ --color-icon-inverted: var(--color-base-white);
841
+ --color-icon-accent: var(--color-blue-400);
842
+ --color-icon-accent-subtle: var(--color-blue-300);
843
+ --color-icon-accent-strong: var(--color-blue-500);
844
+ --color-icon-error: var(--color-red-400);
845
+ --color-icon-success: var(--color-green-400);
846
+ --color-icon-warning: var(--color-yellow-400);
847
+ --color-icon-on-inverted-primary: var(--color-grey-100);
848
+ --color-icon-on-inverted-secondary: var(--color-grey-400);
849
+ --color-icon-on-inverted-disabled: var(--color-grey-500);
850
+ --color-icon-on-inverted-accent: var(--color-blue-300);
851
+ --color-stroke-subtle: var(--color-grey-200);
852
+ --color-stroke-medium: var(--color-grey-300);
853
+ --color-stroke-strong: var(--color-grey-400);
854
+ --color-stroke-alpha-subtle: var(--color-alpha-black-100);
855
+ --color-stroke-alpha-medium: var(--color-alpha-black-300);
856
+ --color-stroke-alpha-strong: var(--color-alpha-black-500);
857
+ --color-stroke-on-dark-subtle: var(--color-grey-600);
858
+ --color-stroke-on-dark-medium: var(--color-grey-500);
859
+ --color-stroke-on-dark-strong: var(--color-grey-400);
860
+ --color-stroke-on-dark-alpha-subtle: var(--color-alpha-white-100);
861
+ --color-stroke-on-dark-alpha-medium: var(--color-alpha-white-300);
862
+ --color-stroke-on-dark-alpha-strong: var(--color-alpha-white-500);
863
+ --color-feedback-negative-light: var(--color-red-100);
864
+ --color-feedback-negative-default: var(--color-red-400);
865
+ --color-feedback-negative-strong: var(--color-red-600);
866
+ --color-feedback-positive-light: var(--color-green-100);
867
+ --color-feedback-positive-default: var(--color-green-400);
868
+ --color-feedback-positive-strong: var(--color-green-600);
869
+ --color-feedback-warning-light: var(--color-yellow-100);
870
+ --color-feedback-warning-default: var(--color-yellow-400);
871
+ --color-feedback-warning-strong: var(--color-yellow-500);
872
+ --color-build-action: var(--color-jade-400);
873
+ --color-build-data: var(--color-violet-400);
874
+ --color-build-function: var(--color-amber-400);
875
+ --color-build-input: var(--color-teal-400);
876
+ --color-build-workflow: var(--color-pink-400);
877
+ }
878
+ @media (prefers-color-scheme: dark) {
879
+ :root {
880
+ --color-accent-lighter: var(--color-blue-700);
881
+ --color-accent-light: var(--color-blue-600);
882
+ --color-accent-subtle: var(--color-blue-500);
883
+ --color-accent-strong: var(--color-blue-300);
884
+ --color-primary-default: var(--color-base-white);
885
+ --color-primary-inverted: var(--color-base-black);
886
+ --color-primary-subtle: var(--color-grey-300);
887
+ --color-primary-light: var(--color-grey-700);
888
+ --color-surface-background: var(--color-base-black);
889
+ --color-surface-background-inverted: var(--color-base-white);
890
+ --color-surface-background-inverted-alpha: var(--color-alpha-grey-600-800);
891
+ --color-surface-layer: var(--color-grey-700);
892
+ --color-surface-layer-strong: var(--color-grey-600);
893
+ --color-surface-layer-stronger: var(--color-grey-500);
894
+ --color-surface-elevated: var(--color-grey-600);
895
+ --color-surface-elevated-inverted: var(--color-grey-600);
896
+ --color-surface-accent: var(--color-blue-600);
897
+ --color-surface-input: var(--color-alpha-black-500);
898
+ --color-content-heading: var(--color-base-white);
899
+ --color-content-primary: var(--color-grey-300);
900
+ --color-content-secondary: var(--color-grey-400);
901
+ --color-content-disabled: var(--color-grey-500);
902
+ --color-content-inverted: var(--color-base-black);
903
+ --color-content-accent: var(--color-blue-300);
904
+ --color-content-error: var(--color-red-300);
905
+ --color-content-success: var(--color-green-300);
906
+ --color-content-warning: var(--color-yellow-300);
907
+ --color-icon-primary: var(--color-grey-300);
908
+ --color-icon-secondary: var(--color-grey-400);
909
+ --color-icon-disabled: var(--color-grey-500);
910
+ --color-icon-inverted: var(--color-base-black);
911
+ --color-icon-accent: var(--color-blue-300);
912
+ --color-icon-accent-subtle: var(--color-blue-400);
913
+ --color-icon-accent-strong: var(--color-blue-200);
914
+ --color-icon-error: var(--color-red-300);
915
+ --color-icon-success: var(--color-green-300);
916
+ --color-icon-warning: var(--color-yellow-300);
917
+ --color-stroke-subtle: var(--color-grey-600);
918
+ --color-stroke-medium: var(--color-grey-500);
919
+ --color-stroke-strong: var(--color-grey-400);
920
+ --color-stroke-alpha-subtle: var(--color-alpha-white-100);
921
+ --color-stroke-alpha-medium: var(--color-alpha-white-300);
922
+ --color-stroke-alpha-strong: var(--color-alpha-white-500);
923
+ --color-feedback-negative-light: var(--color-red-700);
924
+ --color-feedback-negative-strong: var(--color-red-300);
925
+ --color-feedback-positive-light: var(--color-green-700);
926
+ --color-feedback-positive-strong: var(--color-green-300);
927
+ --color-feedback-warning-light: var(--color-yellow-700);
928
+ --color-feedback-warning-strong: var(--color-yellow-300);
929
+ --color-build-action: var(--color-jade-300);
930
+ --color-build-data: var(--color-violet-300);
931
+ --color-build-function: var(--color-amber-300);
932
+ --color-build-input: var(--color-teal-300);
933
+ --color-build-workflow: var(--color-pink-300);
934
+ }
935
+ }
936
+ /*# sourceMappingURL=index.css.map */