@servicetitan/hammer-token 0.0.0-rc-20250807234739

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 (49) hide show
  1. package/.turbo/turbo-build.log +37 -0
  2. package/CHANGELOG.md +385 -0
  3. package/build/web/core/component-variables.scss +139 -0
  4. package/build/web/core/component.js +645 -0
  5. package/build/web/core/component.scss +69 -0
  6. package/build/web/core/css-utils/a2-border.css +53 -0
  7. package/build/web/core/css-utils/a2-color.css +235 -0
  8. package/build/web/core/css-utils/a2-font.css +49 -0
  9. package/build/web/core/css-utils/a2-spacing.css +483 -0
  10. package/build/web/core/css-utils/a2-utils.css +785 -0
  11. package/build/web/core/css-utils/border.css +53 -0
  12. package/build/web/core/css-utils/color.css +235 -0
  13. package/build/web/core/css-utils/font.css +49 -0
  14. package/build/web/core/css-utils/spacing.css +483 -0
  15. package/build/web/core/css-utils/utils.css +785 -0
  16. package/build/web/core/index.js +5 -0
  17. package/build/web/core/primitive-variables.scss +126 -0
  18. package/build/web/core/primitive.js +124 -0
  19. package/build/web/core/primitive.scss +124 -0
  20. package/build/web/core/raw.js +229 -0
  21. package/build/web/core/semantic-variables.scss +246 -0
  22. package/build/web/core/semantic.js +911 -0
  23. package/build/web/core/semantic.scss +137 -0
  24. package/build/web/index.d.ts +4 -0
  25. package/build/web/index.js +3 -0
  26. package/config.js +504 -0
  27. package/eslint.config.mjs +4 -0
  28. package/package.json +25 -0
  29. package/src/global/primitive/breakpoint.js +19 -0
  30. package/src/global/primitive/color.js +231 -0
  31. package/src/global/primitive/duration.js +16 -0
  32. package/src/global/primitive/font.js +60 -0
  33. package/src/global/primitive/radius.js +31 -0
  34. package/src/global/primitive/size.js +55 -0
  35. package/src/global/primitive/transition.js +16 -0
  36. package/src/theme/core/background.js +170 -0
  37. package/src/theme/core/border.js +103 -0
  38. package/src/theme/core/charts.js +439 -0
  39. package/src/theme/core/component/button.js +708 -0
  40. package/src/theme/core/component/checkbox.js +405 -0
  41. package/src/theme/core/focus.js +35 -0
  42. package/src/theme/core/foreground.js +148 -0
  43. package/src/theme/core/overlay.js +137 -0
  44. package/src/theme/core/shadow.js +29 -0
  45. package/src/theme/core/status.js +49 -0
  46. package/src/theme/core/typography.js +82 -0
  47. package/src/utils/copy-css-utils-cli.js +37 -0
  48. package/src/utils/css-utils-format-utils.js +267 -0
  49. package/type/types.ts +341 -0
@@ -0,0 +1,645 @@
1
+ export const ButtonPrimaryForegroundColor = {
2
+ value: "#ffffff",
3
+ attributes: {
4
+ appearance: {
5
+ dark: {
6
+ value: "#141414"
7
+ }
8
+ }
9
+ }
10
+ };
11
+ export const ButtonPrimaryForegroundColorHover = {
12
+ value: "#ffffff",
13
+ attributes: {
14
+ appearance: {
15
+ dark: {
16
+ value: "#141414"
17
+ }
18
+ }
19
+ }
20
+ };
21
+ export const ButtonPrimaryForegroundColorActive = {
22
+ value: "#ffffff",
23
+ attributes: {
24
+ appearance: {
25
+ dark: {
26
+ value: "#141414"
27
+ }
28
+ }
29
+ }
30
+ };
31
+ export const ButtonPrimaryBackgroundColor = {
32
+ value: "#0265DC",
33
+ attributes: {
34
+ appearance: {
35
+ dark: {
36
+ value: "#78BBFA"
37
+ }
38
+ }
39
+ }
40
+ };
41
+ export const ButtonPrimaryBackgroundColorHover = {
42
+ value: "#0655b4ff",
43
+ attributes: {
44
+ appearance: {
45
+ dark: {
46
+ value: "#8ec6fbff"
47
+ }
48
+ }
49
+ }
50
+ };
51
+ export const ButtonPrimaryBackgroundColorActive = {
52
+ value: "#09458cff",
53
+ attributes: {
54
+ appearance: {
55
+ dark: {
56
+ value: "#68a0d5ff"
57
+ }
58
+ }
59
+ }
60
+ };
61
+ export const ButtonPrimaryBorderColor = {
62
+ value: "transparent",
63
+ attributes: {
64
+ appearance: {
65
+ dark: {
66
+ value: "transparent"
67
+ }
68
+ }
69
+ }
70
+ };
71
+ export const ButtonPrimaryBorderRadius = { value: "0.375rem" };
72
+ export const ButtonPrimaryFocusRingColor = {
73
+ value: "#0265DC",
74
+ attributes: {
75
+ appearance: {
76
+ dark: {
77
+ value: "#78BBFA"
78
+ }
79
+ }
80
+ }
81
+ };
82
+ export const ButtonSecondaryForegroundColor = {
83
+ value: "#141414",
84
+ attributes: {
85
+ appearance: {
86
+ dark: {
87
+ value: "#ffffff"
88
+ }
89
+ }
90
+ }
91
+ };
92
+ export const ButtonSecondaryForegroundColorHover = {
93
+ value: "#141414",
94
+ attributes: {
95
+ appearance: {
96
+ dark: {
97
+ value: "#ffffff"
98
+ }
99
+ }
100
+ }
101
+ };
102
+ export const ButtonSecondaryForegroundColorActive = {
103
+ value: "#141414",
104
+ attributes: {
105
+ appearance: {
106
+ dark: {
107
+ value: "#ffffff"
108
+ }
109
+ }
110
+ }
111
+ };
112
+ export const ButtonSecondaryBackgroundColor = {
113
+ value: "#0404040f",
114
+ attributes: {
115
+ appearance: {
116
+ dark: {
117
+ value: "#ffffff0f"
118
+ }
119
+ }
120
+ }
121
+ };
122
+ export const ButtonSecondaryBackgroundColorHover = {
123
+ value: "#05050522",
124
+ attributes: {
125
+ appearance: {
126
+ dark: {
127
+ value: "#ffffff22"
128
+ }
129
+ }
130
+ }
131
+ };
132
+ export const ButtonSecondaryBackgroundColorActive = {
133
+ value: "#07070735",
134
+ attributes: {
135
+ appearance: {
136
+ dark: {
137
+ value: "#ffffff35"
138
+ }
139
+ }
140
+ }
141
+ };
142
+ export const ButtonSecondaryBorderColor = {
143
+ value: "transparent",
144
+ attributes: {
145
+ appearance: {
146
+ dark: {
147
+ value: "transparent"
148
+ }
149
+ }
150
+ }
151
+ };
152
+ export const ButtonSecondaryBorderRadius = { value: "0.375rem" };
153
+ export const ButtonSecondaryFocusRingColor = {
154
+ value: "#0265DC",
155
+ attributes: {
156
+ appearance: {
157
+ dark: {
158
+ value: "#78BBFA"
159
+ }
160
+ }
161
+ }
162
+ };
163
+ export const ButtonGhostForegroundColor = {
164
+ value: "#141414",
165
+ attributes: {
166
+ appearance: {
167
+ dark: {
168
+ value: "#ffffff"
169
+ }
170
+ }
171
+ }
172
+ };
173
+ export const ButtonGhostForegroundColorHover = {
174
+ value: "#141414",
175
+ attributes: {
176
+ appearance: {
177
+ dark: {
178
+ value: "#ffffff"
179
+ }
180
+ }
181
+ }
182
+ };
183
+ export const ButtonGhostForegroundColorActive = {
184
+ value: "#141414",
185
+ attributes: {
186
+ appearance: {
187
+ dark: {
188
+ value: "#ffffff"
189
+ }
190
+ }
191
+ }
192
+ };
193
+ export const ButtonGhostBackgroundColor = {
194
+ value: "transparent",
195
+ attributes: {
196
+ appearance: {
197
+ dark: {
198
+ value: "transparent"
199
+ }
200
+ }
201
+ }
202
+ };
203
+ export const ButtonGhostBackgroundColorHover = {
204
+ value: "#14141414",
205
+ attributes: {
206
+ appearance: {
207
+ dark: {
208
+ value: "#ffffff14"
209
+ }
210
+ }
211
+ }
212
+ };
213
+ export const ButtonGhostBackgroundColorActive = {
214
+ value: "#14141429",
215
+ attributes: {
216
+ appearance: {
217
+ dark: {
218
+ value: "#ffffff29"
219
+ }
220
+ }
221
+ }
222
+ };
223
+ export const ButtonGhostBorderColor = {
224
+ value: "transparent",
225
+ attributes: {
226
+ appearance: {
227
+ dark: {
228
+ value: "transparent"
229
+ }
230
+ }
231
+ }
232
+ };
233
+ export const ButtonGhostBorderRadius = { value: "0.375rem" };
234
+ export const ButtonGhostFocusRingColor = {
235
+ value: "#0265DC",
236
+ attributes: {
237
+ appearance: {
238
+ dark: {
239
+ value: "#78BBFA"
240
+ }
241
+ }
242
+ }
243
+ };
244
+ export const ButtonDangerPrimaryForegroundColor = {
245
+ value: "#ffffff",
246
+ attributes: {
247
+ appearance: {
248
+ dark: {
249
+ value: "#141414"
250
+ }
251
+ }
252
+ }
253
+ };
254
+ export const ButtonDangerPrimaryForegroundColorHover = {
255
+ value: "#ffffff",
256
+ attributes: {
257
+ appearance: {
258
+ dark: {
259
+ value: "#141414"
260
+ }
261
+ }
262
+ }
263
+ };
264
+ export const ButtonDangerPrimaryForegroundColorActive = {
265
+ value: "#ffffff",
266
+ attributes: {
267
+ appearance: {
268
+ dark: {
269
+ value: "#141414"
270
+ }
271
+ }
272
+ }
273
+ };
274
+ export const ButtonDangerPrimaryBackgroundColor = {
275
+ value: "#e13212",
276
+ attributes: {
277
+ appearance: {
278
+ dark: {
279
+ value: "#ff745f"
280
+ }
281
+ }
282
+ }
283
+ };
284
+ export const ButtonDangerPrimaryBackgroundColorHover = {
285
+ value: "#b82c12ff",
286
+ attributes: {
287
+ appearance: {
288
+ dark: {
289
+ value: "#ff8a79ff"
290
+ }
291
+ }
292
+ }
293
+ };
294
+ export const ButtonDangerPrimaryBackgroundColorActive = {
295
+ value: "#8f2613ff",
296
+ attributes: {
297
+ appearance: {
298
+ dark: {
299
+ value: "#d96553ff"
300
+ }
301
+ }
302
+ }
303
+ };
304
+ export const ButtonDangerPrimaryBorderColor = {
305
+ value: "transparent",
306
+ attributes: {
307
+ appearance: {
308
+ dark: {
309
+ value: "transparent"
310
+ }
311
+ }
312
+ }
313
+ };
314
+ export const ButtonDangerPrimaryBorderRadius = { value: "0.375rem" };
315
+ export const ButtonDangerPrimaryFocusRingColor = {
316
+ value: "#e13212",
317
+ attributes: {
318
+ appearance: {
319
+ dark: {
320
+ value: "#ff745f"
321
+ }
322
+ }
323
+ }
324
+ };
325
+ export const ButtonDangerSecondaryForegroundColor = {
326
+ value: "#bf2a00",
327
+ attributes: {
328
+ appearance: {
329
+ dark: {
330
+ value: "#ffffff"
331
+ }
332
+ }
333
+ }
334
+ };
335
+ export const ButtonDangerSecondaryForegroundColorHover = {
336
+ value: "#bf2a00",
337
+ attributes: {
338
+ appearance: {
339
+ dark: {
340
+ value: "#ff745f"
341
+ }
342
+ }
343
+ }
344
+ };
345
+ export const ButtonDangerSecondaryForegroundColorActive = {
346
+ value: "#bf2a00",
347
+ attributes: {
348
+ appearance: {
349
+ dark: {
350
+ value: "#ff745f"
351
+ }
352
+ }
353
+ }
354
+ };
355
+ export const ButtonDangerSecondaryBackgroundColor = {
356
+ value: "#ffece9",
357
+ attributes: {
358
+ appearance: {
359
+ dark: {
360
+ value: "#ff745f33"
361
+ }
362
+ }
363
+ }
364
+ };
365
+ export const ButtonDangerSecondaryBackgroundColorHover = {
366
+ value: "#fcd9d4ff",
367
+ attributes: {
368
+ appearance: {
369
+ dark: {
370
+ value: "#fe6e5852"
371
+ }
372
+ }
373
+ }
374
+ };
375
+ export const ButtonDangerSecondaryBackgroundColorActive = {
376
+ value: "#f6b4a9ff",
377
+ attributes: {
378
+ appearance: {
379
+ dark: {
380
+ value: "#fe6a5466"
381
+ }
382
+ }
383
+ }
384
+ };
385
+ export const ButtonDangerSecondaryBorderColor = {
386
+ value: "transparent",
387
+ attributes: {
388
+ appearance: {
389
+ dark: {
390
+ value: "transparent"
391
+ }
392
+ }
393
+ }
394
+ };
395
+ export const ButtonDangerSecondaryBorderRadius = { value: "0.375rem" };
396
+ export const ButtonDangerSecondaryFocusRingColor = {
397
+ value: "#e13212",
398
+ attributes: {
399
+ appearance: {
400
+ dark: {
401
+ value: "#ff745f"
402
+ }
403
+ }
404
+ }
405
+ };
406
+ export const CheckboxUncheckedFillColorDefault = {
407
+ value: "#141414",
408
+ attributes: {
409
+ appearance: {
410
+ dark: {
411
+ value: "#ffffff"
412
+ }
413
+ }
414
+ }
415
+ };
416
+ export const CheckboxUncheckedFillColorHover = {
417
+ value: "#141414",
418
+ attributes: {
419
+ appearance: {
420
+ dark: {
421
+ value: "#ffffff"
422
+ }
423
+ }
424
+ }
425
+ };
426
+ export const CheckboxUncheckedFillColorActive = {
427
+ value: "#141414",
428
+ attributes: {
429
+ appearance: {
430
+ dark: {
431
+ value: "#ffffff"
432
+ }
433
+ }
434
+ }
435
+ };
436
+ export const CheckboxUncheckedBackgroundColorDefault = {
437
+ value: "transparent",
438
+ attributes: {
439
+ appearance: {
440
+ dark: {
441
+ value: "transparent"
442
+ }
443
+ }
444
+ }
445
+ };
446
+ export const CheckboxUncheckedBackgroundColorHover = {
447
+ value: "#14141414",
448
+ attributes: {
449
+ appearance: {
450
+ dark: {
451
+ value: "#ffffff14"
452
+ }
453
+ }
454
+ }
455
+ };
456
+ export const CheckboxUncheckedBackgroundColorActive = {
457
+ value: "#14141429",
458
+ attributes: {
459
+ appearance: {
460
+ dark: {
461
+ value: "#ffffff29"
462
+ }
463
+ }
464
+ }
465
+ };
466
+ export const CheckboxCheckedFillColorDefault = {
467
+ value: "#0265DC",
468
+ attributes: {
469
+ appearance: {
470
+ dark: {
471
+ value: "#78BBFA"
472
+ }
473
+ }
474
+ }
475
+ };
476
+ export const CheckboxCheckedFillColorHover = {
477
+ value: "#004ba0d1",
478
+ attributes: {
479
+ appearance: {
480
+ dark: {
481
+ value: "#abd8feda"
482
+ }
483
+ }
484
+ }
485
+ };
486
+ export const CheckboxCheckedFillColorActive = {
487
+ value: "#0151afb8",
488
+ attributes: {
489
+ appearance: {
490
+ dark: {
491
+ value: "#abd8fee0"
492
+ }
493
+ }
494
+ }
495
+ };
496
+ export const CheckboxCheckedBackgroundColorDefault = {
497
+ value: "transparent",
498
+ attributes: {
499
+ appearance: {
500
+ dark: {
501
+ value: "transparent"
502
+ }
503
+ }
504
+ }
505
+ };
506
+ export const CheckboxCheckedBackgroundColorHover = {
507
+ value: "#0265dc14",
508
+ attributes: {
509
+ appearance: {
510
+ dark: {
511
+ value: "#78bbfa14"
512
+ }
513
+ }
514
+ }
515
+ };
516
+ export const CheckboxCheckedBackgroundColorActive = {
517
+ value: "#0265dc29",
518
+ attributes: {
519
+ appearance: {
520
+ dark: {
521
+ value: "#78bbfa29"
522
+ }
523
+ }
524
+ }
525
+ };
526
+ export const CheckboxUncheckedErrorFillColorDefault = {
527
+ value: "#e13212",
528
+ attributes: {
529
+ appearance: {
530
+ dark: {
531
+ value: "#ff745f"
532
+ }
533
+ }
534
+ }
535
+ };
536
+ export const CheckboxUncheckedErrorFillColorHover = {
537
+ value: "#bf2a00",
538
+ attributes: {
539
+ appearance: {
540
+ dark: {
541
+ value: "#ff745f"
542
+ }
543
+ }
544
+ }
545
+ };
546
+ export const CheckboxUncheckedErrorFillColorActive = {
547
+ value: "#bf2a00",
548
+ attributes: {
549
+ appearance: {
550
+ dark: {
551
+ value: "#ff745f"
552
+ }
553
+ }
554
+ }
555
+ };
556
+ export const CheckboxUncheckedErrorBackgroundColorDefault = {
557
+ value: "transparent",
558
+ attributes: {
559
+ appearance: {
560
+ dark: {
561
+ value: "transparent"
562
+ }
563
+ }
564
+ }
565
+ };
566
+ export const CheckboxUncheckedErrorBackgroundColorHover = {
567
+ value: "#e132120f",
568
+ attributes: {
569
+ appearance: {
570
+ dark: {
571
+ value: "#f94d321a"
572
+ }
573
+ }
574
+ }
575
+ };
576
+ export const CheckboxUncheckedErrorBackgroundColorActive = {
577
+ value: "#e132122e",
578
+ attributes: {
579
+ appearance: {
580
+ dark: {
581
+ value: "#f94d3240"
582
+ }
583
+ }
584
+ }
585
+ };
586
+ export const CheckboxCheckedErrorFillColorDefault = {
587
+ value: "#e13212",
588
+ attributes: {
589
+ appearance: {
590
+ dark: {
591
+ value: "#ff745f"
592
+ }
593
+ }
594
+ }
595
+ };
596
+ export const CheckboxCheckedErrorFillColorHover = {
597
+ value: "#bf2a00",
598
+ attributes: {
599
+ appearance: {
600
+ dark: {
601
+ value: "#ff745f"
602
+ }
603
+ }
604
+ }
605
+ };
606
+ export const CheckboxCheckedErrorFillColorActive = {
607
+ value: "#bf2a00",
608
+ attributes: {
609
+ appearance: {
610
+ dark: {
611
+ value: "#ff745f"
612
+ }
613
+ }
614
+ }
615
+ };
616
+ export const CheckboxCheckedErrorBackgroundColorDefault = {
617
+ value: "transparent",
618
+ attributes: {
619
+ appearance: {
620
+ dark: {
621
+ value: "transparent"
622
+ }
623
+ }
624
+ }
625
+ };
626
+ export const CheckboxCheckedErrorBackgroundColorHover = {
627
+ value: "#e132120f",
628
+ attributes: {
629
+ appearance: {
630
+ dark: {
631
+ value: "#f94d321a"
632
+ }
633
+ }
634
+ }
635
+ };
636
+ export const CheckboxCheckedErrorBackgroundColorActive = {
637
+ value: "#e132122e",
638
+ attributes: {
639
+ appearance: {
640
+ dark: {
641
+ value: "#f94d3240"
642
+ }
643
+ }
644
+ }
645
+ };
@@ -0,0 +1,69 @@
1
+ $button-primary-foreground-color: var(--button-primary-foreground-color, #ffffff);
2
+ $button-primary-foreground-color-hover: var(--button-primary-foreground-color-hover, #ffffff);
3
+ $button-primary-foreground-color-active: var(--button-primary-foreground-color-active, #ffffff);
4
+ $button-primary-background-color: var(--button-primary-background-color, #0265DC);
5
+ $button-primary-background-color-hover: var(--button-primary-background-color-hover, #0655b4ff);
6
+ $button-primary-background-color-active: var(--button-primary-background-color-active, #09458cff);
7
+ $button-primary-border-color: var(--button-primary-border-color, transparent);
8
+ $button-primary-border-radius: 0.375rem;
9
+ $button-primary-focus-ring-color: var(--button-primary-focus-ring-color, #0265DC);
10
+ $button-secondary-foreground-color: var(--button-secondary-foreground-color, #141414);
11
+ $button-secondary-foreground-color-hover: var(--button-secondary-foreground-color-hover, #141414);
12
+ $button-secondary-foreground-color-active: var(--button-secondary-foreground-color-active, #141414);
13
+ $button-secondary-background-color: var(--button-secondary-background-color, #0404040f);
14
+ $button-secondary-background-color-hover: var(--button-secondary-background-color-hover, #05050522);
15
+ $button-secondary-background-color-active: var(--button-secondary-background-color-active, #07070735);
16
+ $button-secondary-border-color: var(--button-secondary-border-color, transparent);
17
+ $button-secondary-border-radius: 0.375rem;
18
+ $button-secondary-focus-ring-color: var(--button-secondary-focus-ring-color, #0265DC);
19
+ $button-ghost-foreground-color: var(--button-ghost-foreground-color, #141414);
20
+ $button-ghost-foreground-color-hover: var(--button-ghost-foreground-color-hover, #141414);
21
+ $button-ghost-foreground-color-active: var(--button-ghost-foreground-color-active, #141414);
22
+ $button-ghost-background-color: var(--button-ghost-background-color, transparent);
23
+ $button-ghost-background-color-hover: var(--button-ghost-background-color-hover, #14141414);
24
+ $button-ghost-background-color-active: var(--button-ghost-background-color-active, #14141429);
25
+ $button-ghost-border-color: var(--button-ghost-border-color, transparent);
26
+ $button-ghost-border-radius: 0.375rem;
27
+ $button-ghost-focus-ring-color: var(--button-ghost-focus-ring-color, #0265DC);
28
+ $button-danger-primary-foreground-color: var(--button-danger-primary-foreground-color, #ffffff);
29
+ $button-danger-primary-foreground-color-hover: var(--button-danger-primary-foreground-color-hover, #ffffff);
30
+ $button-danger-primary-foreground-color-active: var(--button-danger-primary-foreground-color-active, #ffffff);
31
+ $button-danger-primary-background-color: var(--button-danger-primary-background-color, #e13212);
32
+ $button-danger-primary-background-color-hover: var(--button-danger-primary-background-color-hover, #b82c12ff);
33
+ $button-danger-primary-background-color-active: var(--button-danger-primary-background-color-active, #8f2613ff);
34
+ $button-danger-primary-border-color: var(--button-danger-primary-border-color, transparent);
35
+ $button-danger-primary-border-radius: 0.375rem;
36
+ $button-danger-primary-focus-ring-color: var(--button-danger-primary-focus-ring-color, #e13212);
37
+ $button-danger-secondary-foreground-color: var(--button-danger-secondary-foreground-color, #bf2a00);
38
+ $button-danger-secondary-foreground-color-hover: var(--button-danger-secondary-foreground-color-hover, #bf2a00);
39
+ $button-danger-secondary-foreground-color-active: var(--button-danger-secondary-foreground-color-active, #bf2a00);
40
+ $button-danger-secondary-background-color: var(--button-danger-secondary-background-color, #ffece9);
41
+ $button-danger-secondary-background-color-hover: var(--button-danger-secondary-background-color-hover, #fcd9d4ff);
42
+ $button-danger-secondary-background-color-active: var(--button-danger-secondary-background-color-active, #f6b4a9ff);
43
+ $button-danger-secondary-border-color: var(--button-danger-secondary-border-color, transparent);
44
+ $button-danger-secondary-border-radius: 0.375rem;
45
+ $button-danger-secondary-focus-ring-color: var(--button-danger-secondary-focus-ring-color, #e13212);
46
+ $checkbox-unchecked-fill-color-default: var(--checkbox-unchecked-fill-color-default, #141414);
47
+ $checkbox-unchecked-fill-color-hover: var(--checkbox-unchecked-fill-color-hover, #141414);
48
+ $checkbox-unchecked-fill-color-active: var(--checkbox-unchecked-fill-color-active, #141414);
49
+ $checkbox-unchecked-background-color-default: var(--checkbox-unchecked-background-color-default, transparent);
50
+ $checkbox-unchecked-background-color-hover: var(--checkbox-unchecked-background-color-hover, #14141414);
51
+ $checkbox-unchecked-background-color-active: var(--checkbox-unchecked-background-color-active, #14141429);
52
+ $checkbox-checked-fill-color-default: var(--checkbox-checked-fill-color-default, #0265DC);
53
+ $checkbox-checked-fill-color-hover: var(--checkbox-checked-fill-color-hover, #004ba0d1);
54
+ $checkbox-checked-fill-color-active: var(--checkbox-checked-fill-color-active, #0151afb8);
55
+ $checkbox-checked-background-color-default: var(--checkbox-checked-background-color-default, transparent);
56
+ $checkbox-checked-background-color-hover: var(--checkbox-checked-background-color-hover, #0265dc14);
57
+ $checkbox-checked-background-color-active: var(--checkbox-checked-background-color-active, #0265dc29);
58
+ $checkbox-unchecked-error-fill-color-default: var(--checkbox-unchecked-error-fill-color-default, #e13212);
59
+ $checkbox-unchecked-error-fill-color-hover: var(--checkbox-unchecked-error-fill-color-hover, #bf2a00);
60
+ $checkbox-unchecked-error-fill-color-active: var(--checkbox-unchecked-error-fill-color-active, #bf2a00);
61
+ $checkbox-unchecked-error-background-color-default: var(--checkbox-unchecked-error-background-color-default, transparent);
62
+ $checkbox-unchecked-error-background-color-hover: var(--checkbox-unchecked-error-background-color-hover, #e132120f);
63
+ $checkbox-unchecked-error-background-color-active: var(--checkbox-unchecked-error-background-color-active, #e132122e);
64
+ $checkbox-checked-error-fill-color-default: var(--checkbox-checked-error-fill-color-default, #e13212);
65
+ $checkbox-checked-error-fill-color-hover: var(--checkbox-checked-error-fill-color-hover, #bf2a00);
66
+ $checkbox-checked-error-fill-color-active: var(--checkbox-checked-error-fill-color-active, #bf2a00);
67
+ $checkbox-checked-error-background-color-default: var(--checkbox-checked-error-background-color-default, transparent);
68
+ $checkbox-checked-error-background-color-hover: var(--checkbox-checked-error-background-color-hover, #e132120f);
69
+ $checkbox-checked-error-background-color-active: var(--checkbox-checked-error-background-color-active, #e132122e);