@gitlab/ui 85.9.0 → 85.10.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/CHANGELOG.md +8 -0
- package/dist/components/base/datepicker/datepicker.js +1 -1
- package/dist/components/base/popover/popover.js +1 -1
- package/dist/components/base/search_box_by_click/search_box_by_click.js +1 -1
- package/dist/components/base/table/table.js +1 -1
- package/dist/components/base/token_selector/token_selector.js +1 -1
- package/dist/components/charts/single_stat/single_stat.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.js +1 -1
- package/dist/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.js +3 -3
- package/dist/components/experimental/duo/chat/duo_chat.js +2 -2
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +35 -1
- package/dist/tokens/build/js/tokens.js +35 -1
- package/dist/tokens/css/tokens.css +34 -0
- package/dist/tokens/css/tokens.dark.css +34 -0
- package/dist/tokens/js/tokens.dark.js +34 -0
- package/dist/tokens/js/tokens.js +34 -0
- package/dist/tokens/json/tokens.dark.json +853 -0
- package/dist/tokens/json/tokens.json +853 -0
- package/dist/tokens/scss/_tokens.dark.scss +34 -0
- package/dist/tokens/scss/_tokens.scss +34 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +34 -0
- package/package.json +5 -4
- package/src/components/base/datepicker/datepicker.vue +1 -1
- package/src/components/base/form/form_fields/validators.js +1 -1
- package/src/components/base/popover/popover.vue +1 -1
- package/src/components/base/search_box_by_click/search_box_by_click.vue +1 -1
- package/src/components/base/skeleton_loader/skeleton_loader.scss +2 -2
- package/src/components/base/table/table.vue +1 -1
- package/src/components/base/token_selector/token_selector.vue +1 -1
- package/src/components/charts/single_stat/single_stat.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_conversation/duo_chat_conversation.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_loader/duo_chat_loader.vue +1 -1
- package/src/components/experimental/duo/chat/components/duo_chat_message/duo_chat_message.vue +3 -3
- package/src/components/experimental/duo/chat/duo_chat.vue +8 -8
- package/src/tokens/action.tokens.json +277 -0
- package/src/tokens/build/css/tokens.css +34 -0
- package/src/tokens/build/css/tokens.dark.css +34 -0
- package/src/tokens/build/js/tokens.dark.js +34 -0
- package/src/tokens/build/js/tokens.js +34 -0
- package/src/tokens/build/json/tokens.dark.json +853 -0
- package/src/tokens/build/json/tokens.json +853 -0
- package/src/tokens/build/scss/_tokens.dark.scss +34 -0
- package/src/tokens/build/scss/_tokens.scss +34 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +34 -0
- package/src/tokens/contextual/skeleton-loader.tokens.json +24 -0
|
@@ -313,6 +313,283 @@
|
|
|
313
313
|
}
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
|
+
},
|
|
317
|
+
"confirm": {
|
|
318
|
+
"background": {
|
|
319
|
+
"color": {
|
|
320
|
+
"default": {
|
|
321
|
+
"$value": {
|
|
322
|
+
"default": "{color.neutral.0}",
|
|
323
|
+
"dark": "{color.neutral.900}"
|
|
324
|
+
},
|
|
325
|
+
"$type": "color",
|
|
326
|
+
"$description": "Used for the background of an outlined confirm (positive) action in the default state."
|
|
327
|
+
},
|
|
328
|
+
"hover": {
|
|
329
|
+
"$value": {
|
|
330
|
+
"default": "{color.blue.50}",
|
|
331
|
+
"dark": "{color.blue.900}"
|
|
332
|
+
},
|
|
333
|
+
"$type": "color",
|
|
334
|
+
"$description": "Used for the background of an outlined confirm (positive) action in the hover state."
|
|
335
|
+
},
|
|
336
|
+
"focus": {
|
|
337
|
+
"$value": {
|
|
338
|
+
"default": "{color.blue.50}",
|
|
339
|
+
"dark": "{color.blue.900}"
|
|
340
|
+
},
|
|
341
|
+
"$type": "color",
|
|
342
|
+
"$description": "Used for the background of an outlined confirm (positive) action in the focus state."
|
|
343
|
+
},
|
|
344
|
+
"active": {
|
|
345
|
+
"$value": {
|
|
346
|
+
"default": "{color.blue.100}",
|
|
347
|
+
"dark": "{color.blue.800}"
|
|
348
|
+
},
|
|
349
|
+
"$type": "color",
|
|
350
|
+
"$description": "Used for the background of an outlined confirm (positive) action in the active state."
|
|
351
|
+
},
|
|
352
|
+
"subtle": {
|
|
353
|
+
"default": {
|
|
354
|
+
"$value": "{color.alpha.0}",
|
|
355
|
+
"$type": "color",
|
|
356
|
+
"$description": "Used for the background of a borderless, subtle confirm (positive) action in the default state."
|
|
357
|
+
},
|
|
358
|
+
"hover": {
|
|
359
|
+
"$value": {
|
|
360
|
+
"default": "{color.blue.50}",
|
|
361
|
+
"dark": "{color.blue.900}"
|
|
362
|
+
},
|
|
363
|
+
"$type": "color",
|
|
364
|
+
"$description": "Used for the background of a borderless, subtle confirm (positive) action in the hover state."
|
|
365
|
+
},
|
|
366
|
+
"focus": {
|
|
367
|
+
"$value": {
|
|
368
|
+
"default": "{color.blue.50}",
|
|
369
|
+
"dark": "{color.blue.900}"
|
|
370
|
+
},
|
|
371
|
+
"$type": "color",
|
|
372
|
+
"$description": "Used for the background of a borderless, subtle confirm (positive) action in the focus state."
|
|
373
|
+
},
|
|
374
|
+
"active": {
|
|
375
|
+
"$value": {
|
|
376
|
+
"default": "{color.blue.100}",
|
|
377
|
+
"dark": "{color.blue.800}"
|
|
378
|
+
},
|
|
379
|
+
"$type": "color",
|
|
380
|
+
"$description": "Used for the background of a borderless, subtle confirm (positive) action in the active state."
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"strong": {
|
|
384
|
+
"default": {
|
|
385
|
+
"$value": {
|
|
386
|
+
"default": "{color.blue.500}",
|
|
387
|
+
"dark": "{color.blue.400}"
|
|
388
|
+
},
|
|
389
|
+
"$type": "color",
|
|
390
|
+
"$description": "Used for the background of a solid, strong confirm (positive) action in the default state."
|
|
391
|
+
},
|
|
392
|
+
"hover": {
|
|
393
|
+
"$value": {
|
|
394
|
+
"default": "{color.blue.600}",
|
|
395
|
+
"dark": "{color.blue.300}"
|
|
396
|
+
},
|
|
397
|
+
"$type": "color",
|
|
398
|
+
"$description": "Used for the background of a solid, strong confirm (positive) action in the hover state."
|
|
399
|
+
},
|
|
400
|
+
"focus": {
|
|
401
|
+
"$value": {
|
|
402
|
+
"default": "{color.blue.600}",
|
|
403
|
+
"dark": "{color.blue.300}"
|
|
404
|
+
},
|
|
405
|
+
"$type": "color",
|
|
406
|
+
"$description": "Used for the background of a solid, strong confirm (positive) action in the focus state."
|
|
407
|
+
},
|
|
408
|
+
"active": {
|
|
409
|
+
"$value": {
|
|
410
|
+
"default": "{color.blue.700}",
|
|
411
|
+
"dark": "{color.blue.200}"
|
|
412
|
+
},
|
|
413
|
+
"$type": "color",
|
|
414
|
+
"$description": "Used for the background of a solid, strong confirm (positive) action in the active state."
|
|
415
|
+
},
|
|
416
|
+
"selected": {
|
|
417
|
+
"$value": {
|
|
418
|
+
"default": "{color.blue.500}",
|
|
419
|
+
"dark": "{color.blue.400}"
|
|
420
|
+
},
|
|
421
|
+
"$type": "color",
|
|
422
|
+
"$description": "Used for the background of a solid, strong confirm (positive) action when in a selected or current state."
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
"border": {
|
|
428
|
+
"color": {
|
|
429
|
+
"default": {
|
|
430
|
+
"$value": {
|
|
431
|
+
"default": "{color.blue.500}",
|
|
432
|
+
"dark": "{color.blue.400}"
|
|
433
|
+
},
|
|
434
|
+
"$type": "color",
|
|
435
|
+
"$description": "Used for the border of an outlined confirm (positive) action in the default state."
|
|
436
|
+
},
|
|
437
|
+
"hover": {
|
|
438
|
+
"$value": {
|
|
439
|
+
"default": "{color.blue.700}",
|
|
440
|
+
"dark": "{color.blue.200}"
|
|
441
|
+
},
|
|
442
|
+
"$type": "color",
|
|
443
|
+
"$description": "Used for the border of an outlined confirm (positive) action in the hover state."
|
|
444
|
+
},
|
|
445
|
+
"focus": {
|
|
446
|
+
"$value": {
|
|
447
|
+
"default": "{color.blue.700}",
|
|
448
|
+
"dark": "{color.blue.200}"
|
|
449
|
+
},
|
|
450
|
+
"$type": "color",
|
|
451
|
+
"$description": "Used for the border of an outlined confirm (positive) action in the focus state."
|
|
452
|
+
},
|
|
453
|
+
"active": {
|
|
454
|
+
"$value": {
|
|
455
|
+
"default": "{color.blue.900}",
|
|
456
|
+
"dark": "{color.blue.50}"
|
|
457
|
+
},
|
|
458
|
+
"$type": "color",
|
|
459
|
+
"$description": "Used for the border of an outlined confirm (positive) action in the active state."
|
|
460
|
+
},
|
|
461
|
+
"strong": {
|
|
462
|
+
"default": {
|
|
463
|
+
"$value": {
|
|
464
|
+
"default": "{color.blue.600}",
|
|
465
|
+
"dark": "{color.blue.300}"
|
|
466
|
+
},
|
|
467
|
+
"$type": "color",
|
|
468
|
+
"$description": "Used for the border of a solid, strong confirm (positive) action in the default state."
|
|
469
|
+
},
|
|
470
|
+
"hover": {
|
|
471
|
+
"$value": {
|
|
472
|
+
"default": "{color.blue.800}",
|
|
473
|
+
"dark": "{color.blue.100}"
|
|
474
|
+
},
|
|
475
|
+
"$type": "color",
|
|
476
|
+
"$description": "Used for the border of a solid, strong confirm (positive) action in the hover state."
|
|
477
|
+
},
|
|
478
|
+
"focus": {
|
|
479
|
+
"$value": {
|
|
480
|
+
"default": "{color.blue.800}",
|
|
481
|
+
"dark": "{color.blue.100}"
|
|
482
|
+
},
|
|
483
|
+
"$type": "color",
|
|
484
|
+
"$description": "Used for the border of a solid, strong confirm (positive) action in the focus state."
|
|
485
|
+
},
|
|
486
|
+
"active": {
|
|
487
|
+
"$value": {
|
|
488
|
+
"default": "{color.blue.900}",
|
|
489
|
+
"dark": "{color.blue.50}"
|
|
490
|
+
},
|
|
491
|
+
"$type": "color",
|
|
492
|
+
"$description": "Used for the border of a solid, strong confirm (positive) action in the active state."
|
|
493
|
+
},
|
|
494
|
+
"selected": {
|
|
495
|
+
"$value": {
|
|
496
|
+
"default": "{color.blue.600}",
|
|
497
|
+
"dark": "{color.blue.300}"
|
|
498
|
+
},
|
|
499
|
+
"$type": "color",
|
|
500
|
+
"$description": "Used for the border of a solid, strong confirm (positive) action when in a selected or current state."
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"text": {
|
|
506
|
+
"color": {
|
|
507
|
+
"default": {
|
|
508
|
+
"$value": {
|
|
509
|
+
"default": "{color.blue.500}",
|
|
510
|
+
"dark": "{color.blue.400}"
|
|
511
|
+
},
|
|
512
|
+
"$type": "color",
|
|
513
|
+
"$description": "Used for the text of a confirm (positive) action in the default state."
|
|
514
|
+
},
|
|
515
|
+
"hover": {
|
|
516
|
+
"$value": {
|
|
517
|
+
"default": "{color.blue.700}",
|
|
518
|
+
"dark": "{color.blue.200}"
|
|
519
|
+
},
|
|
520
|
+
"$type": "color",
|
|
521
|
+
"$description": "Used for the text of a confirm (positive) action in the hover state."
|
|
522
|
+
},
|
|
523
|
+
"focus": {
|
|
524
|
+
"$value": {
|
|
525
|
+
"default": "{color.blue.700}",
|
|
526
|
+
"dark": "{color.blue.200}"
|
|
527
|
+
},
|
|
528
|
+
"$type": "color",
|
|
529
|
+
"$description": "Used for the text of a confirm (positive) action in the focus state."
|
|
530
|
+
},
|
|
531
|
+
"active": {
|
|
532
|
+
"$value": {
|
|
533
|
+
"default": "{color.blue.900}",
|
|
534
|
+
"dark": "{color.blue.50}"
|
|
535
|
+
},
|
|
536
|
+
"$type": "color",
|
|
537
|
+
"$description": "Used for the text of a confirm (positive) action in the active state."
|
|
538
|
+
},
|
|
539
|
+
"strong": {
|
|
540
|
+
"$value": {
|
|
541
|
+
"default": "{color.neutral.0}",
|
|
542
|
+
"dark": "{color.neutral.900}"
|
|
543
|
+
},
|
|
544
|
+
"$type": "color",
|
|
545
|
+
"$description": "Used for the text on a solid, strong confirm (positive) action background."
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"icon": {
|
|
550
|
+
"color": {
|
|
551
|
+
"default": {
|
|
552
|
+
"$value": {
|
|
553
|
+
"default": "{color.blue.500}",
|
|
554
|
+
"dark": "{color.blue.400}"
|
|
555
|
+
},
|
|
556
|
+
"$type": "color",
|
|
557
|
+
"$description": "Used for the icon of a confirm (positive) action in the default state."
|
|
558
|
+
},
|
|
559
|
+
"hover": {
|
|
560
|
+
"$value": {
|
|
561
|
+
"default": "{color.blue.700}",
|
|
562
|
+
"dark": "{color.blue.200}"
|
|
563
|
+
},
|
|
564
|
+
"$type": "color",
|
|
565
|
+
"$description": "Used for the icon of a confirm (positive) action in the hover state."
|
|
566
|
+
},
|
|
567
|
+
"focus": {
|
|
568
|
+
"$value": {
|
|
569
|
+
"default": "{color.blue.700}",
|
|
570
|
+
"dark": "{color.blue.200}"
|
|
571
|
+
},
|
|
572
|
+
"$type": "color",
|
|
573
|
+
"$description": "Used for the icon of a confirm (positive) action in the focus state."
|
|
574
|
+
},
|
|
575
|
+
"active": {
|
|
576
|
+
"$value": {
|
|
577
|
+
"default": "{color.blue.900}",
|
|
578
|
+
"dark": "{color.blue.50}"
|
|
579
|
+
},
|
|
580
|
+
"$type": "color",
|
|
581
|
+
"$description": "Used for the icon of a confirm (positive) action in the active state."
|
|
582
|
+
},
|
|
583
|
+
"strong": {
|
|
584
|
+
"$value": {
|
|
585
|
+
"default": "{color.neutral.0}",
|
|
586
|
+
"dark": "{color.neutral.900}"
|
|
587
|
+
},
|
|
588
|
+
"$type": "color",
|
|
589
|
+
"$description": "Used for the icon on a solid, strong confirm (positive) action background."
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
316
593
|
}
|
|
317
594
|
}
|
|
318
595
|
}
|
|
@@ -516,6 +516,8 @@
|
|
|
516
516
|
--gl-control-background-color-selected-default: var(--gl-color-blue-500); /* Used for checked and indeterminate (selected) form control (checkbox, radio button) background. */
|
|
517
517
|
--gl-control-background-color-disabled: var(--gl-color-neutral-10); /* Used for disabled form control (checkbox, input, radio button, textarea) background. */
|
|
518
518
|
--gl-control-background-color-default: var(--gl-color-neutral-0); /* Used for form control (input, radio button, checkbox, textarea) default background. */
|
|
519
|
+
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-50); /* Used for the animated shimmer effect in a skeleton loader. */
|
|
520
|
+
--gl-skeleton-loader-background-color: var(--gl-color-neutral-100); /* Used for the skeleton loader background color. */
|
|
519
521
|
--gl-popover-background-color: var(--gl-color-neutral-0); /* Used for the background color of popover. */
|
|
520
522
|
--gl-breadcrumb-separator-color: var(--gl-color-neutral-200); /* Used for the breadcrumb level separator. */
|
|
521
523
|
--gl-banner-promo-background-color: var(--gl-color-neutral-10); /* Used as background for the default banner type. */
|
|
@@ -536,6 +538,38 @@
|
|
|
536
538
|
--gl-background-color-strong: var(--gl-color-neutral-50); /* Used to make the background easily stand out from the default. */
|
|
537
539
|
--gl-background-color-subtle: var(--gl-color-neutral-10); /* Used to slightly differentiate the background from the default. */
|
|
538
540
|
--gl-background-color-default: var(--gl-color-neutral-0); /* Used for the default background color. */
|
|
541
|
+
--gl-action-confirm-icon-color-strong: var(--gl-color-neutral-0); /* Used for the icon on a solid, strong confirm (positive) action background. */
|
|
542
|
+
--gl-action-confirm-icon-color-active: var(--gl-color-blue-900); /* Used for the icon of a confirm (positive) action in the active state. */
|
|
543
|
+
--gl-action-confirm-icon-color-focus: var(--gl-color-blue-700); /* Used for the icon of a confirm (positive) action in the focus state. */
|
|
544
|
+
--gl-action-confirm-icon-color-hover: var(--gl-color-blue-700); /* Used for the icon of a confirm (positive) action in the hover state. */
|
|
545
|
+
--gl-action-confirm-icon-color-default: var(--gl-color-blue-500); /* Used for the icon of a confirm (positive) action in the default state. */
|
|
546
|
+
--gl-action-confirm-text-color-strong: var(--gl-color-neutral-0); /* Used for the text on a solid, strong confirm (positive) action background. */
|
|
547
|
+
--gl-action-confirm-text-color-active: var(--gl-color-blue-900); /* Used for the text of a confirm (positive) action in the active state. */
|
|
548
|
+
--gl-action-confirm-text-color-focus: var(--gl-color-blue-700); /* Used for the text of a confirm (positive) action in the focus state. */
|
|
549
|
+
--gl-action-confirm-text-color-hover: var(--gl-color-blue-700); /* Used for the text of a confirm (positive) action in the hover state. */
|
|
550
|
+
--gl-action-confirm-text-color-default: var(--gl-color-blue-500); /* Used for the text of a confirm (positive) action in the default state. */
|
|
551
|
+
--gl-action-confirm-border-color-strong-selected: var(--gl-color-blue-600); /* Used for the border of a solid, strong confirm (positive) action when in a selected or current state. */
|
|
552
|
+
--gl-action-confirm-border-color-strong-active: var(--gl-color-blue-900); /* Used for the border of a solid, strong confirm (positive) action in the active state. */
|
|
553
|
+
--gl-action-confirm-border-color-strong-focus: var(--gl-color-blue-800); /* Used for the border of a solid, strong confirm (positive) action in the focus state. */
|
|
554
|
+
--gl-action-confirm-border-color-strong-hover: var(--gl-color-blue-800); /* Used for the border of a solid, strong confirm (positive) action in the hover state. */
|
|
555
|
+
--gl-action-confirm-border-color-strong-default: var(--gl-color-blue-600); /* Used for the border of a solid, strong confirm (positive) action in the default state. */
|
|
556
|
+
--gl-action-confirm-border-color-active: var(--gl-color-blue-900); /* Used for the border of an outlined confirm (positive) action in the active state. */
|
|
557
|
+
--gl-action-confirm-border-color-focus: var(--gl-color-blue-700); /* Used for the border of an outlined confirm (positive) action in the focus state. */
|
|
558
|
+
--gl-action-confirm-border-color-hover: var(--gl-color-blue-700); /* Used for the border of an outlined confirm (positive) action in the hover state. */
|
|
559
|
+
--gl-action-confirm-border-color-default: var(--gl-color-blue-500); /* Used for the border of an outlined confirm (positive) action in the default state. */
|
|
560
|
+
--gl-action-confirm-background-color-strong-selected: var(--gl-color-blue-500); /* Used for the background of a solid, strong confirm (positive) action when in a selected or current state. */
|
|
561
|
+
--gl-action-confirm-background-color-strong-active: var(--gl-color-blue-700); /* Used for the background of a solid, strong confirm (positive) action in the active state. */
|
|
562
|
+
--gl-action-confirm-background-color-strong-focus: var(--gl-color-blue-600); /* Used for the background of a solid, strong confirm (positive) action in the focus state. */
|
|
563
|
+
--gl-action-confirm-background-color-strong-hover: var(--gl-color-blue-600); /* Used for the background of a solid, strong confirm (positive) action in the hover state. */
|
|
564
|
+
--gl-action-confirm-background-color-strong-default: var(--gl-color-blue-500); /* Used for the background of a solid, strong confirm (positive) action in the default state. */
|
|
565
|
+
--gl-action-confirm-background-color-subtle-active: var(--gl-color-blue-100); /* Used for the background of a borderless, subtle confirm (positive) action in the active state. */
|
|
566
|
+
--gl-action-confirm-background-color-subtle-focus: var(--gl-color-blue-50); /* Used for the background of a borderless, subtle confirm (positive) action in the focus state. */
|
|
567
|
+
--gl-action-confirm-background-color-subtle-hover: var(--gl-color-blue-50); /* Used for the background of a borderless, subtle confirm (positive) action in the hover state. */
|
|
568
|
+
--gl-action-confirm-background-color-subtle-default: var(--gl-color-alpha-0); /* Used for the background of a borderless, subtle confirm (positive) action in the default state. */
|
|
569
|
+
--gl-action-confirm-background-color-active: var(--gl-color-blue-100); /* Used for the background of an outlined confirm (positive) action in the active state. */
|
|
570
|
+
--gl-action-confirm-background-color-focus: var(--gl-color-blue-50); /* Used for the background of an outlined confirm (positive) action in the focus state. */
|
|
571
|
+
--gl-action-confirm-background-color-hover: var(--gl-color-blue-50); /* Used for the background of an outlined confirm (positive) action in the hover state. */
|
|
572
|
+
--gl-action-confirm-background-color-default: var(--gl-color-neutral-0); /* Used for the background of an outlined confirm (positive) action in the default state. */
|
|
539
573
|
--gl-action-neutral-icon-color-strong: var(--gl-color-neutral-0); /* Used for the icon on a solid, strong neutral action background. */
|
|
540
574
|
--gl-action-neutral-icon-color-active: var(--gl-color-neutral-900); /* Used for the icon of outlined and borderless neutral actions in the active state. */
|
|
541
575
|
--gl-action-neutral-icon-color-focus: var(--gl-color-neutral-700); /* Used for the icon of outlined and borderless neutral actions in the focus state. */
|
|
@@ -516,6 +516,8 @@
|
|
|
516
516
|
--gl-control-background-color-selected-default: var(--gl-color-blue-400); /* Used for checked and indeterminate (selected) form control (checkbox, radio button) background. */
|
|
517
517
|
--gl-control-background-color-disabled: var(--gl-color-neutral-950); /* Used for disabled form control (checkbox, input, radio button, textarea) background. */
|
|
518
518
|
--gl-control-background-color-default: var(--gl-color-neutral-900); /* Used for form control (input, radio button, checkbox, textarea) default background. */
|
|
519
|
+
--gl-skeleton-loader-shimmer-color: var(--gl-color-neutral-700); /* Used for the animated shimmer effect in a skeleton loader. */
|
|
520
|
+
--gl-skeleton-loader-background-color: var(--gl-color-neutral-800); /* Used for the skeleton loader background color. */
|
|
519
521
|
--gl-popover-background-color: var(--gl-color-neutral-900); /* Used for the background color of popover. */
|
|
520
522
|
--gl-breadcrumb-separator-color: var(--gl-color-neutral-700); /* Used for the breadcrumb level separator. */
|
|
521
523
|
--gl-banner-promo-background-color: var(--gl-color-neutral-900); /* Used as background for the default banner type. */
|
|
@@ -536,6 +538,38 @@
|
|
|
536
538
|
--gl-background-color-strong: var(--gl-color-neutral-800); /* Used to make the background easily stand out from the default. */
|
|
537
539
|
--gl-background-color-subtle: var(--gl-color-neutral-900); /* Used to slightly differentiate the background from the default. */
|
|
538
540
|
--gl-background-color-default: var(--gl-color-neutral-950); /* Used for the default background color. */
|
|
541
|
+
--gl-action-confirm-icon-color-strong: var(--gl-color-neutral-900); /* Used for the icon on a solid, strong confirm (positive) action background. */
|
|
542
|
+
--gl-action-confirm-icon-color-active: var(--gl-color-blue-50); /* Used for the icon of a confirm (positive) action in the active state. */
|
|
543
|
+
--gl-action-confirm-icon-color-focus: var(--gl-color-blue-200); /* Used for the icon of a confirm (positive) action in the focus state. */
|
|
544
|
+
--gl-action-confirm-icon-color-hover: var(--gl-color-blue-200); /* Used for the icon of a confirm (positive) action in the hover state. */
|
|
545
|
+
--gl-action-confirm-icon-color-default: var(--gl-color-blue-400); /* Used for the icon of a confirm (positive) action in the default state. */
|
|
546
|
+
--gl-action-confirm-text-color-strong: var(--gl-color-neutral-900); /* Used for the text on a solid, strong confirm (positive) action background. */
|
|
547
|
+
--gl-action-confirm-text-color-active: var(--gl-color-blue-50); /* Used for the text of a confirm (positive) action in the active state. */
|
|
548
|
+
--gl-action-confirm-text-color-focus: var(--gl-color-blue-200); /* Used for the text of a confirm (positive) action in the focus state. */
|
|
549
|
+
--gl-action-confirm-text-color-hover: var(--gl-color-blue-200); /* Used for the text of a confirm (positive) action in the hover state. */
|
|
550
|
+
--gl-action-confirm-text-color-default: var(--gl-color-blue-400); /* Used for the text of a confirm (positive) action in the default state. */
|
|
551
|
+
--gl-action-confirm-border-color-strong-selected: var(--gl-color-blue-300); /* Used for the border of a solid, strong confirm (positive) action when in a selected or current state. */
|
|
552
|
+
--gl-action-confirm-border-color-strong-active: var(--gl-color-blue-50); /* Used for the border of a solid, strong confirm (positive) action in the active state. */
|
|
553
|
+
--gl-action-confirm-border-color-strong-focus: var(--gl-color-blue-100); /* Used for the border of a solid, strong confirm (positive) action in the focus state. */
|
|
554
|
+
--gl-action-confirm-border-color-strong-hover: var(--gl-color-blue-100); /* Used for the border of a solid, strong confirm (positive) action in the hover state. */
|
|
555
|
+
--gl-action-confirm-border-color-strong-default: var(--gl-color-blue-300); /* Used for the border of a solid, strong confirm (positive) action in the default state. */
|
|
556
|
+
--gl-action-confirm-border-color-active: var(--gl-color-blue-50); /* Used for the border of an outlined confirm (positive) action in the active state. */
|
|
557
|
+
--gl-action-confirm-border-color-focus: var(--gl-color-blue-200); /* Used for the border of an outlined confirm (positive) action in the focus state. */
|
|
558
|
+
--gl-action-confirm-border-color-hover: var(--gl-color-blue-200); /* Used for the border of an outlined confirm (positive) action in the hover state. */
|
|
559
|
+
--gl-action-confirm-border-color-default: var(--gl-color-blue-400); /* Used for the border of an outlined confirm (positive) action in the default state. */
|
|
560
|
+
--gl-action-confirm-background-color-strong-selected: var(--gl-color-blue-400); /* Used for the background of a solid, strong confirm (positive) action when in a selected or current state. */
|
|
561
|
+
--gl-action-confirm-background-color-strong-active: var(--gl-color-blue-200); /* Used for the background of a solid, strong confirm (positive) action in the active state. */
|
|
562
|
+
--gl-action-confirm-background-color-strong-focus: var(--gl-color-blue-300); /* Used for the background of a solid, strong confirm (positive) action in the focus state. */
|
|
563
|
+
--gl-action-confirm-background-color-strong-hover: var(--gl-color-blue-300); /* Used for the background of a solid, strong confirm (positive) action in the hover state. */
|
|
564
|
+
--gl-action-confirm-background-color-strong-default: var(--gl-color-blue-400); /* Used for the background of a solid, strong confirm (positive) action in the default state. */
|
|
565
|
+
--gl-action-confirm-background-color-subtle-active: var(--gl-color-blue-800); /* Used for the background of a borderless, subtle confirm (positive) action in the active state. */
|
|
566
|
+
--gl-action-confirm-background-color-subtle-focus: var(--gl-color-blue-900); /* Used for the background of a borderless, subtle confirm (positive) action in the focus state. */
|
|
567
|
+
--gl-action-confirm-background-color-subtle-hover: var(--gl-color-blue-900); /* Used for the background of a borderless, subtle confirm (positive) action in the hover state. */
|
|
568
|
+
--gl-action-confirm-background-color-subtle-default: var(--gl-color-alpha-0); /* Used for the background of a borderless, subtle confirm (positive) action in the default state. */
|
|
569
|
+
--gl-action-confirm-background-color-active: var(--gl-color-blue-800); /* Used for the background of an outlined confirm (positive) action in the active state. */
|
|
570
|
+
--gl-action-confirm-background-color-focus: var(--gl-color-blue-900); /* Used for the background of an outlined confirm (positive) action in the focus state. */
|
|
571
|
+
--gl-action-confirm-background-color-hover: var(--gl-color-blue-900); /* Used for the background of an outlined confirm (positive) action in the hover state. */
|
|
572
|
+
--gl-action-confirm-background-color-default: var(--gl-color-neutral-900); /* Used for the background of an outlined confirm (positive) action in the default state. */
|
|
539
573
|
--gl-action-neutral-icon-color-strong: var(--gl-color-neutral-900); /* Used for the icon on a solid, strong neutral action background. */
|
|
540
574
|
--gl-action-neutral-icon-color-active: var(--gl-color-neutral-50); /* Used for the icon of outlined and borderless neutral actions in the active state. */
|
|
541
575
|
--gl-action-neutral-icon-color-focus: var(--gl-color-neutral-200); /* Used for the icon of outlined and borderless neutral actions in the focus state. */
|
|
@@ -38,6 +38,38 @@ export const GL_ACTION_NEUTRAL_ICON_COLOR_HOVER = '#bfbfc3'; // Used for the ico
|
|
|
38
38
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_FOCUS = '#bfbfc3'; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
39
39
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_ACTIVE = '#ececef'; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
40
40
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_STRONG = '#333238'; // Used for the icon on a solid, strong neutral action background.
|
|
41
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for the background of an outlined confirm (positive) action in the default state.
|
|
42
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_HOVER = '#033464'; // Used for the background of an outlined confirm (positive) action in the hover state.
|
|
43
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_FOCUS = '#033464'; // Used for the background of an outlined confirm (positive) action in the focus state.
|
|
44
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_ACTIVE = '#064787'; // Used for the background of an outlined confirm (positive) action in the active state.
|
|
45
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_DEFAULT = 'transparent'; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
|
|
46
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_HOVER = '#033464'; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
|
|
47
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_FOCUS = '#033464'; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
|
|
48
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_ACTIVE = '#064787'; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
|
|
49
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_DEFAULT = '#428fdc'; // Used for the background of a solid, strong confirm (positive) action in the default state.
|
|
50
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_HOVER = '#63a6e9'; // Used for the background of a solid, strong confirm (positive) action in the hover state.
|
|
51
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_FOCUS = '#63a6e9'; // Used for the background of a solid, strong confirm (positive) action in the focus state.
|
|
52
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_ACTIVE = '#9dc7f1'; // Used for the background of a solid, strong confirm (positive) action in the active state.
|
|
53
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_SELECTED = '#428fdc'; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
|
|
54
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_DEFAULT = '#428fdc'; // Used for the border of an outlined confirm (positive) action in the default state.
|
|
55
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_HOVER = '#9dc7f1'; // Used for the border of an outlined confirm (positive) action in the hover state.
|
|
56
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_FOCUS = '#9dc7f1'; // Used for the border of an outlined confirm (positive) action in the focus state.
|
|
57
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_ACTIVE = '#e9f3fc'; // Used for the border of an outlined confirm (positive) action in the active state.
|
|
58
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_DEFAULT = '#63a6e9'; // Used for the border of a solid, strong confirm (positive) action in the default state.
|
|
59
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_HOVER = '#cbe2f9'; // Used for the border of a solid, strong confirm (positive) action in the hover state.
|
|
60
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_FOCUS = '#cbe2f9'; // Used for the border of a solid, strong confirm (positive) action in the focus state.
|
|
61
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_ACTIVE = '#e9f3fc'; // Used for the border of a solid, strong confirm (positive) action in the active state.
|
|
62
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_SELECTED = '#63a6e9'; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
|
|
63
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_DEFAULT = '#428fdc'; // Used for the text of a confirm (positive) action in the default state.
|
|
64
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_HOVER = '#9dc7f1'; // Used for the text of a confirm (positive) action in the hover state.
|
|
65
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_FOCUS = '#9dc7f1'; // Used for the text of a confirm (positive) action in the focus state.
|
|
66
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_ACTIVE = '#e9f3fc'; // Used for the text of a confirm (positive) action in the active state.
|
|
67
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_STRONG = '#333238'; // Used for the text on a solid, strong confirm (positive) action background.
|
|
68
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_DEFAULT = '#428fdc'; // Used for the icon of a confirm (positive) action in the default state.
|
|
69
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_HOVER = '#9dc7f1'; // Used for the icon of a confirm (positive) action in the hover state.
|
|
70
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_FOCUS = '#9dc7f1'; // Used for the icon of a confirm (positive) action in the focus state.
|
|
71
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_ACTIVE = '#e9f3fc'; // Used for the icon of a confirm (positive) action in the active state.
|
|
72
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_STRONG = '#333238'; // Used for the icon on a solid, strong confirm (positive) action background.
|
|
41
73
|
export const GL_BACKGROUND_COLOR_DEFAULT = '#1f1e24'; // Used for the default background color.
|
|
42
74
|
export const GL_BACKGROUND_COLOR_SUBTLE = '#333238'; // Used to slightly differentiate the background from the default.
|
|
43
75
|
export const GL_BACKGROUND_COLOR_STRONG = '#434248'; // Used to make the background easily stand out from the default.
|
|
@@ -433,6 +465,8 @@ export const GL_BANNER_INTRO_BORDER_COLOR = '#1068bf'; // Used to compliment the
|
|
|
433
465
|
export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#333238'; // Used as background for the default banner type.
|
|
434
466
|
export const GL_BREADCRUMB_SEPARATOR_COLOR = '#535158'; // Used for the breadcrumb level separator.
|
|
435
467
|
export const GL_POPOVER_BACKGROUND_COLOR = '#333238'; // Used for the background color of popover.
|
|
468
|
+
export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#434248'; // Used for the skeleton loader background color.
|
|
469
|
+
export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#535158'; // Used for the animated shimmer effect in a skeleton loader.
|
|
436
470
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#333238'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
437
471
|
export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#1f1e24'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
438
472
|
export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#428fdc'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|
|
@@ -38,6 +38,38 @@ export const GL_ACTION_NEUTRAL_ICON_COLOR_HOVER = '#535158'; // Used for the ico
|
|
|
38
38
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_FOCUS = '#535158'; // Used for the icon of outlined and borderless neutral actions in the focus state.
|
|
39
39
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_ACTIVE = '#333238'; // Used for the icon of outlined and borderless neutral actions in the active state.
|
|
40
40
|
export const GL_ACTION_NEUTRAL_ICON_COLOR_STRONG = '#fff'; // Used for the icon on a solid, strong neutral action background.
|
|
41
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the background of an outlined confirm (positive) action in the default state.
|
|
42
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_HOVER = '#e9f3fc'; // Used for the background of an outlined confirm (positive) action in the hover state.
|
|
43
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_FOCUS = '#e9f3fc'; // Used for the background of an outlined confirm (positive) action in the focus state.
|
|
44
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_ACTIVE = '#cbe2f9'; // Used for the background of an outlined confirm (positive) action in the active state.
|
|
45
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_DEFAULT = 'transparent'; // Used for the background of a borderless, subtle confirm (positive) action in the default state.
|
|
46
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_HOVER = '#e9f3fc'; // Used for the background of a borderless, subtle confirm (positive) action in the hover state.
|
|
47
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_FOCUS = '#e9f3fc'; // Used for the background of a borderless, subtle confirm (positive) action in the focus state.
|
|
48
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_SUBTLE_ACTIVE = '#cbe2f9'; // Used for the background of a borderless, subtle confirm (positive) action in the active state.
|
|
49
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_DEFAULT = '#1f75cb'; // Used for the background of a solid, strong confirm (positive) action in the default state.
|
|
50
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_HOVER = '#1068bf'; // Used for the background of a solid, strong confirm (positive) action in the hover state.
|
|
51
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_FOCUS = '#1068bf'; // Used for the background of a solid, strong confirm (positive) action in the focus state.
|
|
52
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_ACTIVE = '#0b5cad'; // Used for the background of a solid, strong confirm (positive) action in the active state.
|
|
53
|
+
export const GL_ACTION_CONFIRM_BACKGROUND_COLOR_STRONG_SELECTED = '#1f75cb'; // Used for the background of a solid, strong confirm (positive) action when in a selected or current state.
|
|
54
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_DEFAULT = '#1f75cb'; // Used for the border of an outlined confirm (positive) action in the default state.
|
|
55
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_HOVER = '#0b5cad'; // Used for the border of an outlined confirm (positive) action in the hover state.
|
|
56
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_FOCUS = '#0b5cad'; // Used for the border of an outlined confirm (positive) action in the focus state.
|
|
57
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_ACTIVE = '#033464'; // Used for the border of an outlined confirm (positive) action in the active state.
|
|
58
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_DEFAULT = '#1068bf'; // Used for the border of a solid, strong confirm (positive) action in the default state.
|
|
59
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_HOVER = '#064787'; // Used for the border of a solid, strong confirm (positive) action in the hover state.
|
|
60
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_FOCUS = '#064787'; // Used for the border of a solid, strong confirm (positive) action in the focus state.
|
|
61
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_ACTIVE = '#033464'; // Used for the border of a solid, strong confirm (positive) action in the active state.
|
|
62
|
+
export const GL_ACTION_CONFIRM_BORDER_COLOR_STRONG_SELECTED = '#1068bf'; // Used for the border of a solid, strong confirm (positive) action when in a selected or current state.
|
|
63
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_DEFAULT = '#1f75cb'; // Used for the text of a confirm (positive) action in the default state.
|
|
64
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_HOVER = '#0b5cad'; // Used for the text of a confirm (positive) action in the hover state.
|
|
65
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_FOCUS = '#0b5cad'; // Used for the text of a confirm (positive) action in the focus state.
|
|
66
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_ACTIVE = '#033464'; // Used for the text of a confirm (positive) action in the active state.
|
|
67
|
+
export const GL_ACTION_CONFIRM_TEXT_COLOR_STRONG = '#fff'; // Used for the text on a solid, strong confirm (positive) action background.
|
|
68
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_DEFAULT = '#1f75cb'; // Used for the icon of a confirm (positive) action in the default state.
|
|
69
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_HOVER = '#0b5cad'; // Used for the icon of a confirm (positive) action in the hover state.
|
|
70
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_FOCUS = '#0b5cad'; // Used for the icon of a confirm (positive) action in the focus state.
|
|
71
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_ACTIVE = '#033464'; // Used for the icon of a confirm (positive) action in the active state.
|
|
72
|
+
export const GL_ACTION_CONFIRM_ICON_COLOR_STRONG = '#fff'; // Used for the icon on a solid, strong confirm (positive) action background.
|
|
41
73
|
export const GL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for the default background color.
|
|
42
74
|
export const GL_BACKGROUND_COLOR_SUBTLE = '#fbfafd'; // Used to slightly differentiate the background from the default.
|
|
43
75
|
export const GL_BACKGROUND_COLOR_STRONG = '#ececef'; // Used to make the background easily stand out from the default.
|
|
@@ -433,6 +465,8 @@ export const GL_BANNER_INTRO_BORDER_COLOR = '#63a6e9'; // Used to compliment the
|
|
|
433
465
|
export const GL_BANNER_PROMO_BACKGROUND_COLOR = '#fbfafd'; // Used as background for the default banner type.
|
|
434
466
|
export const GL_BREADCRUMB_SEPARATOR_COLOR = '#bfbfc3'; // Used for the breadcrumb level separator.
|
|
435
467
|
export const GL_POPOVER_BACKGROUND_COLOR = '#fff'; // Used for the background color of popover.
|
|
468
|
+
export const GL_SKELETON_LOADER_BACKGROUND_COLOR = '#dcdcde'; // Used for the skeleton loader background color.
|
|
469
|
+
export const GL_SKELETON_LOADER_SHIMMER_COLOR = '#ececef'; // Used for the animated shimmer effect in a skeleton loader.
|
|
436
470
|
export const GL_CONTROL_BACKGROUND_COLOR_DEFAULT = '#fff'; // Used for form control (input, radio button, checkbox, textarea) default background.
|
|
437
471
|
export const GL_CONTROL_BACKGROUND_COLOR_DISABLED = '#fbfafd'; // Used for disabled form control (checkbox, input, radio button, textarea) background.
|
|
438
472
|
export const GL_CONTROL_BACKGROUND_COLOR_SELECTED_DEFAULT = '#1f75cb'; // Used for checked and indeterminate (selected) form control (checkbox, radio button) background.
|