@daikin-oss/dds-tokens 0.4.2 → 1.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.
Files changed (39) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +115 -31
  3. package/build/css/aaf/Dark/tailwind4.css +130 -0
  4. package/build/css/aaf/Dark/variables.css +8 -8
  5. package/build/css/aaf/Light/tailwind4.css +130 -0
  6. package/build/css/aaf/Light/variables.css +8 -8
  7. package/build/css/daikin/Dark/tailwind4.css +177 -0
  8. package/build/css/daikin/Dark/variables.css +12 -8
  9. package/build/css/daikin/Light/tailwind4.css +177 -0
  10. package/build/css/daikin/Light/variables.css +12 -8
  11. package/build/js/aaf/Dark/variables.cjs +8 -8
  12. package/build/js/aaf/Dark/variables.d.cts +8 -8
  13. package/build/js/aaf/Dark/variables.d.ts +8 -8
  14. package/build/js/aaf/Dark/variables.js +8 -8
  15. package/build/js/aaf/Light/variables.cjs +8 -8
  16. package/build/js/aaf/Light/variables.d.cts +8 -8
  17. package/build/js/aaf/Light/variables.d.ts +8 -8
  18. package/build/js/aaf/Light/variables.js +8 -8
  19. package/build/js/daikin/Dark/variables.cjs +12 -8
  20. package/build/js/daikin/Dark/variables.d.cts +12 -8
  21. package/build/js/daikin/Dark/variables.d.ts +12 -8
  22. package/build/js/daikin/Dark/variables.js +12 -8
  23. package/build/js/daikin/Light/variables.cjs +12 -8
  24. package/build/js/daikin/Light/variables.d.cts +12 -8
  25. package/build/js/daikin/Light/variables.d.ts +12 -8
  26. package/build/js/daikin/Light/variables.js +12 -8
  27. package/build/json/aaf/Dark/tokens.json +40 -40
  28. package/build/json/aaf/Light/tokens.json +40 -40
  29. package/build/json/daikin/Dark/tokens.json +60 -40
  30. package/build/json/daikin/Light/tokens.json +60 -40
  31. package/build/scss/aaf/Dark/_mixins.scss +8 -8
  32. package/build/scss/aaf/Light/_mixins.scss +8 -8
  33. package/build/scss/daikin/Dark/_mixins.scss +12 -8
  34. package/build/scss/daikin/Light/_mixins.scss +12 -8
  35. package/build/tailwind4.css +177 -0
  36. package/package.json +10 -3
  37. package/themes/dkn/dark/system.json +18 -0
  38. package/themes/dkn/light/system.json +19 -1
  39. package/themes/reference.json +47 -78
@@ -564,6 +564,16 @@
564
564
  "dimension",
565
565
  "spacing"
566
566
  ],
567
+ "space-1200": [
568
+ "48px",
569
+ "dimension",
570
+ "spacing"
571
+ ],
572
+ "space-1600": [
573
+ "64px",
574
+ "dimension",
575
+ "spacing"
576
+ ],
567
577
  "space-050": [
568
578
  "2px",
569
579
  "dimension",
@@ -609,46 +619,6 @@
609
619
  "typography",
610
620
  null
611
621
  ],
612
- "font-regular-bold-normal-300": [
613
- "700 12px/1.5 Roboto",
614
- "typography",
615
- null
616
- ],
617
- "font-regular-bold-normal-350": [
618
- "700 14px/1.5 Roboto",
619
- "typography",
620
- null
621
- ],
622
- "font-regular-bold-normal-400": [
623
- "700 16px/1.5 Roboto",
624
- "typography",
625
- null
626
- ],
627
- "font-regular-bold-normal-500": [
628
- "700 20px/1.5 Roboto",
629
- "typography",
630
- null
631
- ],
632
- "font-regular-bold-tight-300": [
633
- "700 12px/1.3 Roboto",
634
- "typography",
635
- null
636
- ],
637
- "font-regular-bold-tight-350": [
638
- "700 14px/1.3 Roboto",
639
- "typography",
640
- null
641
- ],
642
- "font-regular-bold-tight-400": [
643
- "700 16px/1.3 Roboto",
644
- "typography",
645
- null
646
- ],
647
- "font-regular-bold-tight-500": [
648
- "700 20px/1.3 Roboto",
649
- "typography",
650
- null
651
- ],
652
622
  "font-size-300": [
653
623
  "12px",
654
624
  "fontSize",
@@ -669,6 +639,21 @@
669
639
  "fontSize",
670
640
  "fontSizes"
671
641
  ],
642
+ "font-size-600": [
643
+ "24px",
644
+ "fontSize",
645
+ "fontSizes"
646
+ ],
647
+ "font-size-700": [
648
+ "28px",
649
+ "fontSize",
650
+ "fontSizes"
651
+ ],
652
+ "font-size-800": [
653
+ "32px",
654
+ "fontSize",
655
+ "fontSizes"
656
+ ],
672
657
  "font-line-height-tight": [
673
658
  "1.3",
674
659
  "lineHeight",
@@ -733,5 +718,20 @@
733
718
  "700 20px/1.3 Roboto",
734
719
  "typography",
735
720
  null
721
+ ],
722
+ "font-bold-tight-600": [
723
+ "700 24px/1.3 Roboto",
724
+ "typography",
725
+ null
726
+ ],
727
+ "font-bold-tight-700": [
728
+ "700 28px/1.3 Roboto",
729
+ "typography",
730
+ null
731
+ ],
732
+ "font-bold-tight-800": [
733
+ "700 32px/1.3 Roboto",
734
+ "typography",
735
+ null
736
736
  ]
737
737
  }
@@ -554,6 +554,21 @@
554
554
  "color",
555
555
  null
556
556
  ],
557
+ "color-common-surface-secondary-default": [
558
+ "#313131",
559
+ "color",
560
+ null
561
+ ],
562
+ "color-common-surface-secondary-hover": [
563
+ "#414141",
564
+ "color",
565
+ null
566
+ ],
567
+ "color-common-surface-secondary-press": [
568
+ "#515151",
569
+ "color",
570
+ null
571
+ ],
557
572
  "color-common-surface-inverse": [
558
573
  "#ffffff",
559
574
  "color",
@@ -664,6 +679,11 @@
664
679
  "color",
665
680
  null
666
681
  ],
682
+ "color-common-border-inverse": [
683
+ "#212121",
684
+ "color",
685
+ null
686
+ ],
667
687
  "color-common-background-default": [
668
688
  "#212121",
669
689
  "color",
@@ -779,6 +799,16 @@
779
799
  "dimension",
780
800
  "spacing"
781
801
  ],
802
+ "space-1200": [
803
+ "48px",
804
+ "dimension",
805
+ "spacing"
806
+ ],
807
+ "space-1600": [
808
+ "64px",
809
+ "dimension",
810
+ "spacing"
811
+ ],
782
812
  "space-050": [
783
813
  "2px",
784
814
  "dimension",
@@ -824,46 +854,6 @@
824
854
  "typography",
825
855
  null
826
856
  ],
827
- "font-regular-bold-normal-300": [
828
- "700 12px/1.5 Roboto",
829
- "typography",
830
- null
831
- ],
832
- "font-regular-bold-normal-350": [
833
- "700 14px/1.5 Roboto",
834
- "typography",
835
- null
836
- ],
837
- "font-regular-bold-normal-400": [
838
- "700 16px/1.5 Roboto",
839
- "typography",
840
- null
841
- ],
842
- "font-regular-bold-normal-500": [
843
- "700 20px/1.5 Roboto",
844
- "typography",
845
- null
846
- ],
847
- "font-regular-bold-tight-300": [
848
- "700 12px/1.3 Roboto",
849
- "typography",
850
- null
851
- ],
852
- "font-regular-bold-tight-350": [
853
- "700 14px/1.3 Roboto",
854
- "typography",
855
- null
856
- ],
857
- "font-regular-bold-tight-400": [
858
- "700 16px/1.3 Roboto",
859
- "typography",
860
- null
861
- ],
862
- "font-regular-bold-tight-500": [
863
- "700 20px/1.3 Roboto",
864
- "typography",
865
- null
866
- ],
867
857
  "font-size-300": [
868
858
  "12px",
869
859
  "fontSize",
@@ -884,6 +874,21 @@
884
874
  "fontSize",
885
875
  "fontSizes"
886
876
  ],
877
+ "font-size-600": [
878
+ "24px",
879
+ "fontSize",
880
+ "fontSizes"
881
+ ],
882
+ "font-size-700": [
883
+ "28px",
884
+ "fontSize",
885
+ "fontSizes"
886
+ ],
887
+ "font-size-800": [
888
+ "32px",
889
+ "fontSize",
890
+ "fontSizes"
891
+ ],
887
892
  "font-line-height-tight": [
888
893
  "1.3",
889
894
  "lineHeight",
@@ -948,5 +953,20 @@
948
953
  "700 20px/1.3 Roboto",
949
954
  "typography",
950
955
  null
956
+ ],
957
+ "font-bold-tight-600": [
958
+ "700 24px/1.3 Roboto",
959
+ "typography",
960
+ null
961
+ ],
962
+ "font-bold-tight-700": [
963
+ "700 28px/1.3 Roboto",
964
+ "typography",
965
+ null
966
+ ],
967
+ "font-bold-tight-800": [
968
+ "700 32px/1.3 Roboto",
969
+ "typography",
970
+ null
951
971
  ]
952
972
  }
@@ -554,6 +554,21 @@
554
554
  "color",
555
555
  null
556
556
  ],
557
+ "color-common-surface-secondary-default": [
558
+ "#ebebeb",
559
+ "color",
560
+ null
561
+ ],
562
+ "color-common-surface-secondary-hover": [
563
+ "#dcdcdc",
564
+ "color",
565
+ null
566
+ ],
567
+ "color-common-surface-secondary-press": [
568
+ "#cecece",
569
+ "color",
570
+ null
571
+ ],
557
572
  "color-common-surface-inverse": [
558
573
  "#616161",
559
574
  "color",
@@ -664,6 +679,11 @@
664
679
  "color",
665
680
  null
666
681
  ],
682
+ "color-common-border-inverse": [
683
+ "#ffffff",
684
+ "color",
685
+ null
686
+ ],
667
687
  "color-common-background-default": [
668
688
  "#ffffff",
669
689
  "color",
@@ -779,6 +799,16 @@
779
799
  "dimension",
780
800
  "spacing"
781
801
  ],
802
+ "space-1200": [
803
+ "48px",
804
+ "dimension",
805
+ "spacing"
806
+ ],
807
+ "space-1600": [
808
+ "64px",
809
+ "dimension",
810
+ "spacing"
811
+ ],
782
812
  "space-050": [
783
813
  "2px",
784
814
  "dimension",
@@ -824,46 +854,6 @@
824
854
  "typography",
825
855
  null
826
856
  ],
827
- "font-regular-bold-normal-300": [
828
- "700 12px/1.5 Roboto",
829
- "typography",
830
- null
831
- ],
832
- "font-regular-bold-normal-350": [
833
- "700 14px/1.5 Roboto",
834
- "typography",
835
- null
836
- ],
837
- "font-regular-bold-normal-400": [
838
- "700 16px/1.5 Roboto",
839
- "typography",
840
- null
841
- ],
842
- "font-regular-bold-normal-500": [
843
- "700 20px/1.5 Roboto",
844
- "typography",
845
- null
846
- ],
847
- "font-regular-bold-tight-300": [
848
- "700 12px/1.3 Roboto",
849
- "typography",
850
- null
851
- ],
852
- "font-regular-bold-tight-350": [
853
- "700 14px/1.3 Roboto",
854
- "typography",
855
- null
856
- ],
857
- "font-regular-bold-tight-400": [
858
- "700 16px/1.3 Roboto",
859
- "typography",
860
- null
861
- ],
862
- "font-regular-bold-tight-500": [
863
- "700 20px/1.3 Roboto",
864
- "typography",
865
- null
866
- ],
867
857
  "font-size-300": [
868
858
  "12px",
869
859
  "fontSize",
@@ -884,6 +874,21 @@
884
874
  "fontSize",
885
875
  "fontSizes"
886
876
  ],
877
+ "font-size-600": [
878
+ "24px",
879
+ "fontSize",
880
+ "fontSizes"
881
+ ],
882
+ "font-size-700": [
883
+ "28px",
884
+ "fontSize",
885
+ "fontSizes"
886
+ ],
887
+ "font-size-800": [
888
+ "32px",
889
+ "fontSize",
890
+ "fontSizes"
891
+ ],
887
892
  "font-line-height-tight": [
888
893
  "1.3",
889
894
  "lineHeight",
@@ -948,5 +953,20 @@
948
953
  "700 20px/1.3 Roboto",
949
954
  "typography",
950
955
  null
956
+ ],
957
+ "font-bold-tight-600": [
958
+ "700 24px/1.3 Roboto",
959
+ "typography",
960
+ null
961
+ ],
962
+ "font-bold-tight-700": [
963
+ "700 28px/1.3 Roboto",
964
+ "typography",
965
+ null
966
+ ],
967
+ "font-bold-tight-800": [
968
+ "700 32px/1.3 Roboto",
969
+ "typography",
970
+ null
951
971
  ]
952
972
  }
@@ -116,6 +116,8 @@
116
116
  --dds-space-400: 16px;
117
117
  --dds-space-600: 24px;
118
118
  --dds-space-800: 32px;
119
+ --dds-space-1200: 48px;
120
+ --dds-space-1600: 64px;
119
121
  --dds-space-050: 2px;
120
122
  --dds-font-regular-normal-300: 400 12px/1.5 Roboto;
121
123
  --dds-font-regular-normal-350: 400 14px/1.5 Roboto;
@@ -125,18 +127,13 @@
125
127
  --dds-font-regular-tight-350: 400 14px/1.3 Roboto;
126
128
  --dds-font-regular-tight-400: 400 16px/1.3 Roboto;
127
129
  --dds-font-regular-tight-500: 400 20px/1.3 Roboto;
128
- --dds-font-regular-bold-normal-300: 700 12px/1.5 Roboto;
129
- --dds-font-regular-bold-normal-350: 700 14px/1.5 Roboto;
130
- --dds-font-regular-bold-normal-400: 700 16px/1.5 Roboto;
131
- --dds-font-regular-bold-normal-500: 700 20px/1.5 Roboto;
132
- --dds-font-regular-bold-tight-300: 700 12px/1.3 Roboto;
133
- --dds-font-regular-bold-tight-350: 700 14px/1.3 Roboto;
134
- --dds-font-regular-bold-tight-400: 700 16px/1.3 Roboto;
135
- --dds-font-regular-bold-tight-500: 700 20px/1.3 Roboto;
136
130
  --dds-font-size-300: 12px;
137
131
  --dds-font-size-350: 14px;
138
132
  --dds-font-size-400: 16px;
139
133
  --dds-font-size-500: 20px;
134
+ --dds-font-size-600: 24px;
135
+ --dds-font-size-700: 28px;
136
+ --dds-font-size-800: 32px;
140
137
  --dds-font-line-height-tight: 1.3;
141
138
  --dds-font-line-height-normal: 1.5;
142
139
  --dds-font-weight-bold: 700;
@@ -150,4 +147,7 @@
150
147
  --dds-font-bold-tight-350: 700 14px/1.3 Roboto;
151
148
  --dds-font-bold-tight-400: 700 16px/1.3 Roboto;
152
149
  --dds-font-bold-tight-500: 700 20px/1.3 Roboto;
150
+ --dds-font-bold-tight-600: 700 24px/1.3 Roboto;
151
+ --dds-font-bold-tight-700: 700 28px/1.3 Roboto;
152
+ --dds-font-bold-tight-800: 700 32px/1.3 Roboto;
153
153
  }
@@ -116,6 +116,8 @@
116
116
  --dds-space-400: 16px;
117
117
  --dds-space-600: 24px;
118
118
  --dds-space-800: 32px;
119
+ --dds-space-1200: 48px;
120
+ --dds-space-1600: 64px;
119
121
  --dds-space-050: 2px;
120
122
  --dds-font-regular-normal-300: 400 12px/1.5 Roboto;
121
123
  --dds-font-regular-normal-350: 400 14px/1.5 Roboto;
@@ -125,18 +127,13 @@
125
127
  --dds-font-regular-tight-350: 400 14px/1.3 Roboto;
126
128
  --dds-font-regular-tight-400: 400 16px/1.3 Roboto;
127
129
  --dds-font-regular-tight-500: 400 20px/1.3 Roboto;
128
- --dds-font-regular-bold-normal-300: 700 12px/1.5 Roboto;
129
- --dds-font-regular-bold-normal-350: 700 14px/1.5 Roboto;
130
- --dds-font-regular-bold-normal-400: 700 16px/1.5 Roboto;
131
- --dds-font-regular-bold-normal-500: 700 20px/1.5 Roboto;
132
- --dds-font-regular-bold-tight-300: 700 12px/1.3 Roboto;
133
- --dds-font-regular-bold-tight-350: 700 14px/1.3 Roboto;
134
- --dds-font-regular-bold-tight-400: 700 16px/1.3 Roboto;
135
- --dds-font-regular-bold-tight-500: 700 20px/1.3 Roboto;
136
130
  --dds-font-size-300: 12px;
137
131
  --dds-font-size-350: 14px;
138
132
  --dds-font-size-400: 16px;
139
133
  --dds-font-size-500: 20px;
134
+ --dds-font-size-600: 24px;
135
+ --dds-font-size-700: 28px;
136
+ --dds-font-size-800: 32px;
140
137
  --dds-font-line-height-tight: 1.3;
141
138
  --dds-font-line-height-normal: 1.5;
142
139
  --dds-font-weight-bold: 700;
@@ -150,4 +147,7 @@
150
147
  --dds-font-bold-tight-350: 700 14px/1.3 Roboto;
151
148
  --dds-font-bold-tight-400: 700 16px/1.3 Roboto;
152
149
  --dds-font-bold-tight-500: 700 20px/1.3 Roboto;
150
+ --dds-font-bold-tight-600: 700 24px/1.3 Roboto;
151
+ --dds-font-bold-tight-700: 700 28px/1.3 Roboto;
152
+ --dds-font-bold-tight-800: 700 32px/1.3 Roboto;
153
153
  }
@@ -114,6 +114,9 @@
114
114
  --dds-color-common-surface-danger-hover: #3e0307;
115
115
  --dds-color-common-surface-danger-press: #5d050a;
116
116
  --dds-color-common-surface-default: #212121;
117
+ --dds-color-common-surface-secondary-default: #313131;
118
+ --dds-color-common-surface-secondary-hover: #414141;
119
+ --dds-color-common-surface-secondary-press: #515151;
117
120
  --dds-color-common-surface-inverse: #ffffff;
118
121
  --dds-color-common-surface-hover: #282828;
119
122
  --dds-color-common-surface-press: #313131;
@@ -136,6 +139,7 @@
136
139
  --dds-color-common-text-inverse: #212121;
137
140
  --dds-color-common-border-focus: #54c3f1;
138
141
  --dds-color-common-border-empty: #515151;
142
+ --dds-color-common-border-inverse: #212121;
139
143
  --dds-color-common-background-default: #212121;
140
144
  --dds-color-common-background-overlay: #000000;
141
145
  --dds-color-divider: #515151;
@@ -159,6 +163,8 @@
159
163
  --dds-space-400: 16px;
160
164
  --dds-space-600: 24px;
161
165
  --dds-space-800: 32px;
166
+ --dds-space-1200: 48px;
167
+ --dds-space-1600: 64px;
162
168
  --dds-space-050: 2px;
163
169
  --dds-font-regular-normal-300: 400 12px/1.5 Roboto;
164
170
  --dds-font-regular-normal-350: 400 14px/1.5 Roboto;
@@ -168,18 +174,13 @@
168
174
  --dds-font-regular-tight-350: 400 14px/1.3 Roboto;
169
175
  --dds-font-regular-tight-400: 400 16px/1.3 Roboto;
170
176
  --dds-font-regular-tight-500: 400 20px/1.3 Roboto;
171
- --dds-font-regular-bold-normal-300: 700 12px/1.5 Roboto;
172
- --dds-font-regular-bold-normal-350: 700 14px/1.5 Roboto;
173
- --dds-font-regular-bold-normal-400: 700 16px/1.5 Roboto;
174
- --dds-font-regular-bold-normal-500: 700 20px/1.5 Roboto;
175
- --dds-font-regular-bold-tight-300: 700 12px/1.3 Roboto;
176
- --dds-font-regular-bold-tight-350: 700 14px/1.3 Roboto;
177
- --dds-font-regular-bold-tight-400: 700 16px/1.3 Roboto;
178
- --dds-font-regular-bold-tight-500: 700 20px/1.3 Roboto;
179
177
  --dds-font-size-300: 12px;
180
178
  --dds-font-size-350: 14px;
181
179
  --dds-font-size-400: 16px;
182
180
  --dds-font-size-500: 20px;
181
+ --dds-font-size-600: 24px;
182
+ --dds-font-size-700: 28px;
183
+ --dds-font-size-800: 32px;
183
184
  --dds-font-line-height-tight: 1.3;
184
185
  --dds-font-line-height-normal: 1.5;
185
186
  --dds-font-weight-bold: 700;
@@ -193,4 +194,7 @@
193
194
  --dds-font-bold-tight-350: 700 14px/1.3 Roboto;
194
195
  --dds-font-bold-tight-400: 700 16px/1.3 Roboto;
195
196
  --dds-font-bold-tight-500: 700 20px/1.3 Roboto;
197
+ --dds-font-bold-tight-600: 700 24px/1.3 Roboto;
198
+ --dds-font-bold-tight-700: 700 28px/1.3 Roboto;
199
+ --dds-font-bold-tight-800: 700 32px/1.3 Roboto;
196
200
  }
@@ -114,6 +114,9 @@
114
114
  --dds-color-common-surface-danger-hover: #fdd9db;
115
115
  --dds-color-common-surface-danger-press: #fbb3b7;
116
116
  --dds-color-common-surface-default: #ffffff;
117
+ --dds-color-common-surface-secondary-default: #ebebeb;
118
+ --dds-color-common-surface-secondary-hover: #dcdcdc;
119
+ --dds-color-common-surface-secondary-press: #cecece;
117
120
  --dds-color-common-surface-inverse: #616161;
118
121
  --dds-color-common-surface-hover: #f2f2f2;
119
122
  --dds-color-common-surface-press: #ebebeb;
@@ -136,6 +139,7 @@
136
139
  --dds-color-common-text-inverse: #ffffff;
137
140
  --dds-color-common-border-focus: #0081c0;
138
141
  --dds-color-common-border-empty: #cecece;
142
+ --dds-color-common-border-inverse: #ffffff;
139
143
  --dds-color-common-background-default: #ffffff;
140
144
  --dds-color-common-background-overlay: #000000;
141
145
  --dds-color-divider: #cecece;
@@ -159,6 +163,8 @@
159
163
  --dds-space-400: 16px;
160
164
  --dds-space-600: 24px;
161
165
  --dds-space-800: 32px;
166
+ --dds-space-1200: 48px;
167
+ --dds-space-1600: 64px;
162
168
  --dds-space-050: 2px;
163
169
  --dds-font-regular-normal-300: 400 12px/1.5 Roboto;
164
170
  --dds-font-regular-normal-350: 400 14px/1.5 Roboto;
@@ -168,18 +174,13 @@
168
174
  --dds-font-regular-tight-350: 400 14px/1.3 Roboto;
169
175
  --dds-font-regular-tight-400: 400 16px/1.3 Roboto;
170
176
  --dds-font-regular-tight-500: 400 20px/1.3 Roboto;
171
- --dds-font-regular-bold-normal-300: 700 12px/1.5 Roboto;
172
- --dds-font-regular-bold-normal-350: 700 14px/1.5 Roboto;
173
- --dds-font-regular-bold-normal-400: 700 16px/1.5 Roboto;
174
- --dds-font-regular-bold-normal-500: 700 20px/1.5 Roboto;
175
- --dds-font-regular-bold-tight-300: 700 12px/1.3 Roboto;
176
- --dds-font-regular-bold-tight-350: 700 14px/1.3 Roboto;
177
- --dds-font-regular-bold-tight-400: 700 16px/1.3 Roboto;
178
- --dds-font-regular-bold-tight-500: 700 20px/1.3 Roboto;
179
177
  --dds-font-size-300: 12px;
180
178
  --dds-font-size-350: 14px;
181
179
  --dds-font-size-400: 16px;
182
180
  --dds-font-size-500: 20px;
181
+ --dds-font-size-600: 24px;
182
+ --dds-font-size-700: 28px;
183
+ --dds-font-size-800: 32px;
183
184
  --dds-font-line-height-tight: 1.3;
184
185
  --dds-font-line-height-normal: 1.5;
185
186
  --dds-font-weight-bold: 700;
@@ -193,4 +194,7 @@
193
194
  --dds-font-bold-tight-350: 700 14px/1.3 Roboto;
194
195
  --dds-font-bold-tight-400: 700 16px/1.3 Roboto;
195
196
  --dds-font-bold-tight-500: 700 20px/1.3 Roboto;
197
+ --dds-font-bold-tight-600: 700 24px/1.3 Roboto;
198
+ --dds-font-bold-tight-700: 700 28px/1.3 Roboto;
199
+ --dds-font-bold-tight-800: 700 32px/1.3 Roboto;
196
200
  }