@gitlab/ui 86.0.1 → 86.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/CHANGELOG.md +14 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +17 -2
- package/dist/tokens/build/js/tokens.js +17 -2
- package/dist/tokens/css/tokens.css +16 -1
- package/dist/tokens/css/tokens.dark.css +16 -1
- package/dist/tokens/js/tokens.dark.js +16 -1
- package/dist/tokens/js/tokens.js +16 -1
- package/dist/tokens/json/tokens.dark.json +296 -13
- package/dist/tokens/json/tokens.json +296 -13
- package/dist/tokens/scss/_tokens.dark.scss +16 -1
- package/dist/tokens/scss/_tokens.scss +16 -1
- package/dist/tokens/scss/_tokens_custom_properties.scss +15 -0
- package/dist/tokens/tailwind/tokens.cjs +32 -16
- package/package.json +2 -2
- package/src/tokens/border.tokens.json +1 -1
- package/src/tokens/build/css/tokens.css +16 -1
- package/src/tokens/build/css/tokens.dark.css +16 -1
- package/src/tokens/build/js/tokens.dark.js +16 -1
- package/src/tokens/build/js/tokens.js +16 -1
- package/src/tokens/build/json/tokens.dark.json +296 -13
- package/src/tokens/build/json/tokens.json +296 -13
- package/src/tokens/build/scss/_tokens.dark.scss +16 -1
- package/src/tokens/build/scss/_tokens.scss +16 -1
- package/src/tokens/build/scss/_tokens_custom_properties.scss +15 -0
- package/src/tokens/build/tailwind/tokens.cjs +32 -16
- package/src/tokens/color.constant.tokens.json +68 -0
- package/src/tokens/color.tokens.json +28 -17
|
@@ -587,6 +587,74 @@
|
|
|
587
587
|
"$value": "#5c1105",
|
|
588
588
|
"$type": "color"
|
|
589
589
|
}
|
|
590
|
+
},
|
|
591
|
+
"brand-white": {
|
|
592
|
+
"$value": "#fff",
|
|
593
|
+
"$type": "color"
|
|
594
|
+
},
|
|
595
|
+
"brand-charcoal": {
|
|
596
|
+
"$value": "#171321",
|
|
597
|
+
"$type": "color"
|
|
598
|
+
},
|
|
599
|
+
"brand-orange": {
|
|
600
|
+
"01g": {
|
|
601
|
+
"$value": "#ffd1bf",
|
|
602
|
+
"$type": "color"
|
|
603
|
+
},
|
|
604
|
+
"01p": {
|
|
605
|
+
"$value": "#fca326",
|
|
606
|
+
"$type": "color"
|
|
607
|
+
},
|
|
608
|
+
"02p": {
|
|
609
|
+
"$value": "#fc6d26",
|
|
610
|
+
"$type": "color"
|
|
611
|
+
},
|
|
612
|
+
"03p": {
|
|
613
|
+
"$value": "#e24329",
|
|
614
|
+
"$type": "color"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"brand-purple": {
|
|
618
|
+
"01g": {
|
|
619
|
+
"$value": "#ceb3ef",
|
|
620
|
+
"$type": "color"
|
|
621
|
+
},
|
|
622
|
+
"01p": {
|
|
623
|
+
"$value": "#a989f5",
|
|
624
|
+
"$type": "color"
|
|
625
|
+
},
|
|
626
|
+
"02p": {
|
|
627
|
+
"$value": "#7759c2",
|
|
628
|
+
"$type": "color"
|
|
629
|
+
}
|
|
630
|
+
},
|
|
631
|
+
"brand-gray": {
|
|
632
|
+
"01": {
|
|
633
|
+
"$value": "#d1d0d3",
|
|
634
|
+
"$type": "color"
|
|
635
|
+
},
|
|
636
|
+
"02": {
|
|
637
|
+
"$value": "#a2a1a6",
|
|
638
|
+
"$type": "color"
|
|
639
|
+
},
|
|
640
|
+
"03": {
|
|
641
|
+
"$value": "#74717a",
|
|
642
|
+
"$type": "color"
|
|
643
|
+
},
|
|
644
|
+
"04": {
|
|
645
|
+
"$value": "#45424d",
|
|
646
|
+
"$type": "color"
|
|
647
|
+
},
|
|
648
|
+
"05": {
|
|
649
|
+
"$value": "#2b2838",
|
|
650
|
+
"$type": "color"
|
|
651
|
+
}
|
|
652
|
+
},
|
|
653
|
+
"brand-pink": {
|
|
654
|
+
"01g": {
|
|
655
|
+
"$value": "#ffb9c9",
|
|
656
|
+
"$type": "color"
|
|
657
|
+
}
|
|
590
658
|
}
|
|
591
659
|
}
|
|
592
660
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"black": {
|
|
3
3
|
"$value": {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
"default": "#000",
|
|
5
|
+
"dark": "#fff"
|
|
6
|
+
},
|
|
7
7
|
"$type": "color",
|
|
8
8
|
"themeable": true,
|
|
9
9
|
"prefix": false
|
|
10
10
|
},
|
|
11
11
|
"white": {
|
|
12
12
|
"$value": {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
"default": "#fff",
|
|
14
|
+
"dark": "#333238"
|
|
15
|
+
},
|
|
16
16
|
"$type": "color",
|
|
17
17
|
"themeable": true,
|
|
18
18
|
"prefix": false
|
|
@@ -637,26 +637,30 @@
|
|
|
637
637
|
"$value": "#171321",
|
|
638
638
|
"$type": "color",
|
|
639
639
|
"themeable": true,
|
|
640
|
-
"prefix": false
|
|
640
|
+
"prefix": false,
|
|
641
|
+
"deprecated": true
|
|
641
642
|
},
|
|
642
643
|
"orange": {
|
|
643
644
|
"01": {
|
|
644
645
|
"$value": "#fca326",
|
|
645
646
|
"$type": "color",
|
|
646
647
|
"themeable": true,
|
|
647
|
-
"prefix": false
|
|
648
|
+
"prefix": false,
|
|
649
|
+
"deprecated": true
|
|
648
650
|
},
|
|
649
651
|
"02": {
|
|
650
652
|
"$value": "#fc6d26",
|
|
651
653
|
"$type": "color",
|
|
652
654
|
"themeable": true,
|
|
653
|
-
"prefix": false
|
|
655
|
+
"prefix": false,
|
|
656
|
+
"deprecated": true
|
|
654
657
|
},
|
|
655
658
|
"03": {
|
|
656
659
|
"$value": "#e24329",
|
|
657
660
|
"$type": "color",
|
|
658
661
|
"themeable": true,
|
|
659
|
-
"prefix": false
|
|
662
|
+
"prefix": false,
|
|
663
|
+
"deprecated": true
|
|
660
664
|
}
|
|
661
665
|
},
|
|
662
666
|
"purple": {
|
|
@@ -664,13 +668,15 @@
|
|
|
664
668
|
"$value": "#a989f5",
|
|
665
669
|
"$type": "color",
|
|
666
670
|
"themeable": true,
|
|
667
|
-
"prefix": false
|
|
671
|
+
"prefix": false,
|
|
672
|
+
"deprecated": true
|
|
668
673
|
},
|
|
669
674
|
"02": {
|
|
670
675
|
"$value": "#7759c2",
|
|
671
676
|
"$type": "color",
|
|
672
677
|
"themeable": true,
|
|
673
|
-
"prefix": false
|
|
678
|
+
"prefix": false,
|
|
679
|
+
"deprecated": true
|
|
674
680
|
}
|
|
675
681
|
},
|
|
676
682
|
"gray": {
|
|
@@ -678,31 +684,36 @@
|
|
|
678
684
|
"$value": "#d1d0d3",
|
|
679
685
|
"$type": "color",
|
|
680
686
|
"themeable": true,
|
|
681
|
-
"prefix": false
|
|
687
|
+
"prefix": false,
|
|
688
|
+
"deprecated": true
|
|
682
689
|
},
|
|
683
690
|
"02": {
|
|
684
691
|
"$value": "#a2a1a6",
|
|
685
692
|
"$type": "color",
|
|
686
693
|
"themeable": true,
|
|
687
|
-
"prefix": false
|
|
694
|
+
"prefix": false,
|
|
695
|
+
"deprecated": true
|
|
688
696
|
},
|
|
689
697
|
"03": {
|
|
690
698
|
"$value": "#74717a",
|
|
691
699
|
"$type": "color",
|
|
692
700
|
"themeable": true,
|
|
693
|
-
"prefix": false
|
|
701
|
+
"prefix": false,
|
|
702
|
+
"deprecated": true
|
|
694
703
|
},
|
|
695
704
|
"04": {
|
|
696
705
|
"$value": "#45424d",
|
|
697
706
|
"$type": "color",
|
|
698
707
|
"themeable": true,
|
|
699
|
-
"prefix": false
|
|
708
|
+
"prefix": false,
|
|
709
|
+
"deprecated": true
|
|
700
710
|
},
|
|
701
711
|
"05": {
|
|
702
712
|
"$value": "#2b2838",
|
|
703
713
|
"$type": "color",
|
|
704
714
|
"themeable": true,
|
|
705
|
-
"prefix": false
|
|
715
|
+
"prefix": false,
|
|
716
|
+
"deprecated": true
|
|
706
717
|
}
|
|
707
718
|
}
|
|
708
719
|
}
|