@atlaskit/tokens 1.14.2 → 1.15.1

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 (174) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  3. package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  4. package/dist/cjs/artifacts/palettes-raw/typography-palette.js +313 -43
  5. package/dist/cjs/artifacts/theme-import-map.js +16 -4
  6. package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
  7. package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +13 -0
  8. package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
  9. package/dist/cjs/artifacts/token-default-values.js +23 -2
  10. package/dist/cjs/artifacts/token-names.js +22 -1
  11. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
  12. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +666 -0
  13. package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
  14. package/dist/cjs/entry-points/tokens-raw.js +2 -2
  15. package/dist/cjs/get-token-value.js +1 -1
  16. package/dist/cjs/get-token.js +1 -1
  17. package/dist/cjs/palettes/typography-palette.js +133 -16
  18. package/dist/cjs/theme-config.js +20 -4
  19. package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
  20. package/dist/cjs/tokens/atlassian-typography/letter-spacing.js +29 -0
  21. package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
  22. package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
  23. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
  24. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
  25. package/dist/cjs/tokens/atlassian-typography-adg3/letter-spacing.js +29 -0
  26. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  27. package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
  28. package/dist/cjs/tokens/atlassian-typography-minor3/font-family.js +29 -0
  29. package/dist/cjs/tokens/atlassian-typography-minor3/letter-spacing.js +29 -0
  30. package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +140 -0
  31. package/dist/cjs/tokens/default/typography/font-family.js +24 -0
  32. package/dist/cjs/tokens/default/typography/font.js +133 -0
  33. package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
  34. package/dist/cjs/tokens/default/typography/line-height.js +8 -0
  35. package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  36. package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  37. package/dist/es2019/artifacts/palettes-raw/typography-palette.js +313 -43
  38. package/dist/es2019/artifacts/theme-import-map.js +8 -4
  39. package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
  40. package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +31 -0
  41. package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
  42. package/dist/es2019/artifacts/token-default-values.js +23 -2
  43. package/dist/es2019/artifacts/token-names.js +22 -1
  44. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  45. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
  46. package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
  47. package/dist/es2019/entry-points/tokens-raw.js +1 -1
  48. package/dist/es2019/get-token-value.js +1 -1
  49. package/dist/es2019/get-token.js +1 -1
  50. package/dist/es2019/palettes/typography-palette.js +135 -17
  51. package/dist/es2019/theme-config.js +20 -4
  52. package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
  53. package/dist/es2019/tokens/atlassian-typography/letter-spacing.js +22 -0
  54. package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
  55. package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
  56. package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
  57. package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  58. package/dist/es2019/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
  59. package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  60. package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
  61. package/dist/es2019/tokens/atlassian-typography-minor3/font-family.js +22 -0
  62. package/dist/es2019/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
  63. package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +133 -0
  64. package/dist/es2019/tokens/default/typography/font-family.js +24 -0
  65. package/dist/es2019/tokens/default/typography/font.js +126 -0
  66. package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
  67. package/dist/es2019/tokens/default/typography/line-height.js +8 -0
  68. package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  69. package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  70. package/dist/esm/artifacts/palettes-raw/typography-palette.js +313 -43
  71. package/dist/esm/artifacts/theme-import-map.js +12 -4
  72. package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
  73. package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +6 -0
  74. package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
  75. package/dist/esm/artifacts/token-default-values.js +23 -2
  76. package/dist/esm/artifacts/token-names.js +22 -1
  77. package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  78. package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
  79. package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
  80. package/dist/esm/entry-points/tokens-raw.js +1 -1
  81. package/dist/esm/get-token-value.js +1 -1
  82. package/dist/esm/get-token.js +1 -1
  83. package/dist/esm/palettes/typography-palette.js +133 -16
  84. package/dist/esm/theme-config.js +20 -4
  85. package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
  86. package/dist/esm/tokens/atlassian-typography/letter-spacing.js +22 -0
  87. package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
  88. package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
  89. package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
  90. package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  91. package/dist/esm/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
  92. package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
  93. package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
  94. package/dist/esm/tokens/atlassian-typography-minor3/font-family.js +22 -0
  95. package/dist/esm/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
  96. package/dist/esm/tokens/atlassian-typography-minor3/theme.js +133 -0
  97. package/dist/esm/tokens/default/typography/font-family.js +24 -0
  98. package/dist/esm/tokens/default/typography/font.js +126 -0
  99. package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
  100. package/dist/esm/tokens/default/typography/line-height.js +8 -0
  101. package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  102. package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  103. package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  104. package/dist/types/artifacts/theme-import-map.d.ts +1 -1
  105. package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  106. package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
  107. package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
  108. package/dist/types/artifacts/token-default-values.d.ts +23 -2
  109. package/dist/types/artifacts/token-names.d.ts +43 -1
  110. package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  111. package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
  112. package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  113. package/dist/types/artifacts/types-internal.d.ts +2 -2
  114. package/dist/types/artifacts/types.d.ts +2 -2
  115. package/dist/types/entry-points/tokens-raw.d.ts +1 -1
  116. package/dist/types/index.d.ts +1 -1
  117. package/dist/types/palettes/typography-palette.d.ts +8 -6
  118. package/dist/types/theme-config.d.ts +4 -4
  119. package/dist/types/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
  120. package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
  121. package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  122. package/dist/types/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
  123. package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  124. package/dist/types/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
  125. package/dist/types/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
  126. package/dist/types/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
  127. package/dist/types/tokens/default/typography/font.d.ts +20 -0
  128. package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
  129. package/dist/types/types.d.ts +111 -22
  130. package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  131. package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  132. package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  133. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
  134. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  135. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
  136. package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
  137. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +23 -2
  138. package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
  139. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  140. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
  141. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  142. package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
  143. package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
  144. package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
  145. package/dist/types-ts4.5/index.d.ts +1 -1
  146. package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
  147. package/dist/types-ts4.5/theme-config.d.ts +7 -3
  148. package/dist/types-ts4.5/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
  149. package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
  150. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  151. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
  152. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  153. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
  154. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
  155. package/dist/types-ts4.5/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
  156. package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
  157. package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
  158. package/dist/types-ts4.5/types.d.ts +111 -22
  159. package/figma/atlassian-typography-adg3.json +150 -0
  160. package/figma/atlassian-typography-minor3.json +51 -0
  161. package/figma/atlassian-typography.json +19 -82
  162. package/package.json +1 -2
  163. package/report.api.md +87 -2
  164. package/tmp/api-report-tmp.d.ts +65 -7
  165. package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
  166. package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
  167. package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
  168. package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
  169. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  170. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  171. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
  172. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  173. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  174. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
@@ -0,0 +1,1084 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /**
8
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
+ * @codegen <<SignedSource::72f2d56fa731cf91334d35722aa12dda>>
10
+ * @codegenCommand yarn build tokens
11
+ */
12
+ var tokens = [{
13
+ "attributes": {
14
+ "group": "typography",
15
+ "state": "experimental",
16
+ "introduced": "1.14.0",
17
+ "description": "The default body font."
18
+ },
19
+ "value": {
20
+ "fontSize": 14,
21
+ "fontStyle": "normal",
22
+ "fontWeight": "400",
23
+ "lineHeight": 20,
24
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
25
+ "letterSpacing": "0"
26
+ },
27
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
28
+ "isSource": true,
29
+ "original": {
30
+ "attributes": {
31
+ "group": "typography",
32
+ "state": "experimental",
33
+ "introduced": "1.14.0",
34
+ "description": "The default body font."
35
+ },
36
+ "value": {
37
+ "fontWeight": "FontWeight400",
38
+ "fontSize": "FontSize14",
39
+ "lineHeight": "LineHeight200",
40
+ "fontFamily": "FontFamilyWebSans",
41
+ "fontStyle": "normal",
42
+ "letterSpacing": "LetterSpacing0"
43
+ }
44
+ },
45
+ "name": "font.body.[default]",
46
+ "path": ["font", "body", "[default]"],
47
+ "cleanName": "font.body"
48
+ }, {
49
+ "attributes": {
50
+ "group": "typography",
51
+ "state": "experimental",
52
+ "introduced": "1.14.0",
53
+ "description": "Smaller body font."
54
+ },
55
+ "value": {
56
+ "fontSize": 11,
57
+ "fontStyle": "normal",
58
+ "fontWeight": "400",
59
+ "lineHeight": 20,
60
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
61
+ "letterSpacing": "0"
62
+ },
63
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
64
+ "isSource": true,
65
+ "original": {
66
+ "attributes": {
67
+ "group": "typography",
68
+ "state": "experimental",
69
+ "introduced": "1.14.0",
70
+ "description": "Smaller body font."
71
+ },
72
+ "value": {
73
+ "fontWeight": "FontWeight400",
74
+ "fontSize": "LegacyFontSize11",
75
+ "lineHeight": "LineHeight200",
76
+ "fontFamily": "FontFamilyWebSans",
77
+ "fontStyle": "normal",
78
+ "letterSpacing": "LetterSpacing0"
79
+ }
80
+ },
81
+ "name": "font.body.sm",
82
+ "path": ["font", "body", "sm"],
83
+ "cleanName": "font.body.sm"
84
+ }, {
85
+ "attributes": {
86
+ "group": "typography",
87
+ "state": "experimental",
88
+ "introduced": "1.14.0",
89
+ "description": "Used for monospace and code."
90
+ },
91
+ "value": {
92
+ "fontSize": "0.875em",
93
+ "fontStyle": "normal",
94
+ "fontWeight": "400",
95
+ "lineHeight": "1",
96
+ "fontFamily": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
97
+ "letterSpacing": "0"
98
+ },
99
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
100
+ "isSource": true,
101
+ "original": {
102
+ "attributes": {
103
+ "group": "typography",
104
+ "state": "experimental",
105
+ "introduced": "1.14.0",
106
+ "description": "Used for monospace and code."
107
+ },
108
+ "value": {
109
+ "fontWeight": "FontWeight400",
110
+ "fontSize": "FontSizeCode",
111
+ "lineHeight": "LineHeight1",
112
+ "fontFamily": "FontFamilyWebMono",
113
+ "fontStyle": "normal",
114
+ "letterSpacing": "LetterSpacing0"
115
+ }
116
+ },
117
+ "name": "font.code.[default]",
118
+ "path": ["font", "code", "[default]"],
119
+ "cleanName": "font.code"
120
+ }, {
121
+ "attributes": {
122
+ "group": "typography",
123
+ "state": "experimental",
124
+ "introduced": "1.14.0",
125
+ "description": "TBD"
126
+ },
127
+ "value": {
128
+ "fontSize": 24,
129
+ "fontStyle": "normal",
130
+ "fontWeight": "500",
131
+ "lineHeight": 28,
132
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
133
+ "letterSpacing": "-0.01em"
134
+ },
135
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
136
+ "isSource": true,
137
+ "original": {
138
+ "attributes": {
139
+ "group": "typography",
140
+ "state": "experimental",
141
+ "introduced": "1.14.0",
142
+ "description": "TBD"
143
+ },
144
+ "value": {
145
+ "fontWeight": "FontWeight500",
146
+ "fontSize": "FontSize24",
147
+ "lineHeight": "LineHeight400",
148
+ "fontFamily": "FontFamilyWebSans",
149
+ "fontStyle": "normal",
150
+ "letterSpacing": "LetterSpacing400"
151
+ }
152
+ },
153
+ "name": "font.heading.lg",
154
+ "path": ["font", "heading", "lg"],
155
+ "cleanName": "font.heading.lg"
156
+ }, {
157
+ "attributes": {
158
+ "group": "typography",
159
+ "state": "experimental",
160
+ "introduced": "1.14.0",
161
+ "description": "TBD"
162
+ },
163
+ "value": {
164
+ "fontSize": 20,
165
+ "fontStyle": "normal",
166
+ "fontWeight": "500",
167
+ "lineHeight": 24,
168
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
169
+ "letterSpacing": "-0.008em"
170
+ },
171
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
172
+ "isSource": true,
173
+ "original": {
174
+ "attributes": {
175
+ "group": "typography",
176
+ "state": "experimental",
177
+ "introduced": "1.14.0",
178
+ "description": "TBD"
179
+ },
180
+ "value": {
181
+ "fontWeight": "FontWeight500",
182
+ "fontSize": "FontSize20",
183
+ "lineHeight": "LineHeight300",
184
+ "fontFamily": "FontFamilyWebSans",
185
+ "fontStyle": "normal",
186
+ "letterSpacing": "LetterSpacing300"
187
+ }
188
+ },
189
+ "name": "font.heading.md",
190
+ "path": ["font", "heading", "md"],
191
+ "cleanName": "font.heading.md"
192
+ }, {
193
+ "attributes": {
194
+ "group": "typography",
195
+ "state": "experimental",
196
+ "introduced": "1.14.0",
197
+ "description": "TBD"
198
+ },
199
+ "value": {
200
+ "fontSize": 16,
201
+ "fontStyle": "normal",
202
+ "fontWeight": "600",
203
+ "lineHeight": 20,
204
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
205
+ "letterSpacing": "-0.006em"
206
+ },
207
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
208
+ "isSource": true,
209
+ "original": {
210
+ "attributes": {
211
+ "group": "typography",
212
+ "state": "experimental",
213
+ "introduced": "1.14.0",
214
+ "description": "TBD"
215
+ },
216
+ "value": {
217
+ "fontWeight": "FontWeight600",
218
+ "fontSize": "FontSize16",
219
+ "lineHeight": "LineHeight200",
220
+ "fontFamily": "FontFamilyWebSans",
221
+ "fontStyle": "normal",
222
+ "letterSpacing": "LetterSpacing200"
223
+ }
224
+ },
225
+ "name": "font.heading.sm",
226
+ "path": ["font", "heading", "sm"],
227
+ "cleanName": "font.heading.sm"
228
+ }, {
229
+ "attributes": {
230
+ "group": "typography",
231
+ "state": "experimental",
232
+ "introduced": "1.14.0",
233
+ "description": "TBD"
234
+ },
235
+ "value": {
236
+ "fontSize": 29,
237
+ "fontStyle": "normal",
238
+ "fontWeight": "600",
239
+ "lineHeight": 32,
240
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
241
+ "letterSpacing": "-0.01em"
242
+ },
243
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
244
+ "isSource": true,
245
+ "original": {
246
+ "attributes": {
247
+ "group": "typography",
248
+ "state": "experimental",
249
+ "introduced": "1.14.0",
250
+ "description": "TBD"
251
+ },
252
+ "value": {
253
+ "fontWeight": "FontWeight600",
254
+ "fontSize": "LegacyFontSize29",
255
+ "lineHeight": "LineHeight500",
256
+ "fontFamily": "FontFamilyWebSans",
257
+ "fontStyle": "normal",
258
+ "letterSpacing": "LetterSpacing400"
259
+ }
260
+ },
261
+ "name": "font.heading.xl",
262
+ "path": ["font", "heading", "xl"],
263
+ "cleanName": "font.heading.xl"
264
+ }, {
265
+ "attributes": {
266
+ "group": "typography",
267
+ "state": "experimental",
268
+ "introduced": "1.14.0",
269
+ "description": "TBD"
270
+ },
271
+ "value": {
272
+ "fontSize": 14,
273
+ "fontStyle": "normal",
274
+ "fontWeight": "600",
275
+ "lineHeight": 16,
276
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
277
+ "letterSpacing": "-0.003em"
278
+ },
279
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
280
+ "isSource": true,
281
+ "original": {
282
+ "attributes": {
283
+ "group": "typography",
284
+ "state": "experimental",
285
+ "introduced": "1.14.0",
286
+ "description": "TBD"
287
+ },
288
+ "value": {
289
+ "fontWeight": "FontWeight600",
290
+ "fontSize": "FontSize14",
291
+ "lineHeight": "LineHeight100",
292
+ "fontFamily": "FontFamilyWebSans",
293
+ "fontStyle": "normal",
294
+ "letterSpacing": "LetterSpacing100"
295
+ }
296
+ },
297
+ "name": "font.heading.xs",
298
+ "path": ["font", "heading", "xs"],
299
+ "cleanName": "font.heading.xs"
300
+ }, {
301
+ "attributes": {
302
+ "group": "typography",
303
+ "state": "experimental",
304
+ "introduced": "1.14.0",
305
+ "description": "TBD"
306
+ },
307
+ "value": {
308
+ "fontSize": 35,
309
+ "fontStyle": "normal",
310
+ "fontWeight": "500",
311
+ "lineHeight": 40,
312
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
313
+ "letterSpacing": "-0.01em"
314
+ },
315
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
316
+ "isSource": true,
317
+ "original": {
318
+ "attributes": {
319
+ "group": "typography",
320
+ "state": "experimental",
321
+ "introduced": "1.14.0",
322
+ "description": "TBD"
323
+ },
324
+ "value": {
325
+ "fontWeight": "FontWeight500",
326
+ "fontSize": "LegacyFontSize35",
327
+ "lineHeight": "LineHeight700",
328
+ "fontFamily": "FontFamilyWebSans",
329
+ "fontStyle": "normal",
330
+ "letterSpacing": "LetterSpacing400"
331
+ }
332
+ },
333
+ "name": "font.heading.xxl",
334
+ "path": ["font", "heading", "xxl"],
335
+ "cleanName": "font.heading.xxl"
336
+ }, {
337
+ "attributes": {
338
+ "group": "typography",
339
+ "state": "experimental",
340
+ "introduced": "1.14.0",
341
+ "description": "TBD"
342
+ },
343
+ "value": {
344
+ "fontSize": 12,
345
+ "fontStyle": "normal",
346
+ "fontWeight": "600",
347
+ "lineHeight": 16,
348
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
349
+ "letterSpacing": "0"
350
+ },
351
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
352
+ "isSource": true,
353
+ "original": {
354
+ "attributes": {
355
+ "group": "typography",
356
+ "state": "experimental",
357
+ "introduced": "1.14.0",
358
+ "description": "TBD"
359
+ },
360
+ "value": {
361
+ "fontWeight": "FontWeight600",
362
+ "fontSize": "FontSize12",
363
+ "lineHeight": "LineHeight100",
364
+ "fontFamily": "FontFamilyWebSans",
365
+ "fontStyle": "normal",
366
+ "letterSpacing": "LetterSpacing0"
367
+ }
368
+ },
369
+ "name": "font.heading.xxs",
370
+ "path": ["font", "heading", "xxs"],
371
+ "cleanName": "font.heading.xxs"
372
+ }, {
373
+ "attributes": {
374
+ "group": "letterSpacing",
375
+ "state": "active",
376
+ "introduced": "0.10.33",
377
+ "description": "Helpful guidance goes here"
378
+ },
379
+ "value": "0",
380
+ "filePath": "src/tokens/atlassian-typography-adg3/letter-spacing.tsx",
381
+ "isSource": true,
382
+ "original": {
383
+ "attributes": {
384
+ "group": "letterSpacing",
385
+ "state": "active",
386
+ "introduced": "0.10.33",
387
+ "description": "Helpful guidance goes here"
388
+ },
389
+ "value": "LetterSpacing0"
390
+ },
391
+ "name": "font.letterSpacing.0",
392
+ "path": ["font", "letterSpacing", "0"],
393
+ "cleanName": "font.letterSpacing.0"
394
+ }, {
395
+ "attributes": {
396
+ "group": "letterSpacing",
397
+ "state": "active",
398
+ "introduced": "0.10.33",
399
+ "description": "Helpful guidance goes here"
400
+ },
401
+ "value": "-0.003em",
402
+ "filePath": "src/tokens/atlassian-typography-adg3/letter-spacing.tsx",
403
+ "isSource": true,
404
+ "original": {
405
+ "attributes": {
406
+ "group": "letterSpacing",
407
+ "state": "active",
408
+ "introduced": "0.10.33",
409
+ "description": "Helpful guidance goes here"
410
+ },
411
+ "value": "LetterSpacing100"
412
+ },
413
+ "name": "font.letterSpacing.100",
414
+ "path": ["font", "letterSpacing", "100"],
415
+ "cleanName": "font.letterSpacing.100"
416
+ }, {
417
+ "attributes": {
418
+ "group": "letterSpacing",
419
+ "state": "active",
420
+ "introduced": "0.10.33",
421
+ "description": "Helpful guidance goes here"
422
+ },
423
+ "value": "-0.006em",
424
+ "filePath": "src/tokens/atlassian-typography-adg3/letter-spacing.tsx",
425
+ "isSource": true,
426
+ "original": {
427
+ "attributes": {
428
+ "group": "letterSpacing",
429
+ "state": "active",
430
+ "introduced": "0.10.33",
431
+ "description": "Helpful guidance goes here"
432
+ },
433
+ "value": "LetterSpacing200"
434
+ },
435
+ "name": "font.letterSpacing.200",
436
+ "path": ["font", "letterSpacing", "200"],
437
+ "cleanName": "font.letterSpacing.200"
438
+ }, {
439
+ "attributes": {
440
+ "group": "letterSpacing",
441
+ "state": "active",
442
+ "introduced": "0.10.33",
443
+ "description": "Helpful guidance goes here"
444
+ },
445
+ "value": "-0.008em",
446
+ "filePath": "src/tokens/atlassian-typography-adg3/letter-spacing.tsx",
447
+ "isSource": true,
448
+ "original": {
449
+ "attributes": {
450
+ "group": "letterSpacing",
451
+ "state": "active",
452
+ "introduced": "0.10.33",
453
+ "description": "Helpful guidance goes here"
454
+ },
455
+ "value": "LetterSpacing300"
456
+ },
457
+ "name": "font.letterSpacing.300",
458
+ "path": ["font", "letterSpacing", "300"],
459
+ "cleanName": "font.letterSpacing.300"
460
+ }, {
461
+ "attributes": {
462
+ "group": "letterSpacing",
463
+ "state": "active",
464
+ "introduced": "0.10.33",
465
+ "description": "Helpful guidance goes here"
466
+ },
467
+ "value": "-0.01em",
468
+ "filePath": "src/tokens/atlassian-typography-adg3/letter-spacing.tsx",
469
+ "isSource": true,
470
+ "original": {
471
+ "attributes": {
472
+ "group": "letterSpacing",
473
+ "state": "active",
474
+ "introduced": "0.10.33",
475
+ "description": "Helpful guidance goes here"
476
+ },
477
+ "value": "LetterSpacing400"
478
+ },
479
+ "name": "font.letterSpacing.400",
480
+ "path": ["font", "letterSpacing", "400"],
481
+ "cleanName": "font.letterSpacing.400"
482
+ }, {
483
+ "attributes": {
484
+ "group": "typography",
485
+ "state": "experimental",
486
+ "introduced": "1.14.0",
487
+ "description": "Single-line non-wrapping text like that in a button."
488
+ },
489
+ "value": {
490
+ "fontSize": 14,
491
+ "fontStyle": "normal",
492
+ "fontWeight": "400",
493
+ "lineHeight": 16,
494
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
495
+ "letterSpacing": "0"
496
+ },
497
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
498
+ "isSource": true,
499
+ "original": {
500
+ "attributes": {
501
+ "group": "typography",
502
+ "state": "experimental",
503
+ "introduced": "1.14.0",
504
+ "description": "Single-line non-wrapping text like that in a button."
505
+ },
506
+ "value": {
507
+ "fontWeight": "FontWeight400",
508
+ "fontSize": "FontSize14",
509
+ "lineHeight": "LineHeight100",
510
+ "fontFamily": "FontFamilyWebSans",
511
+ "fontStyle": "normal",
512
+ "letterSpacing": "LetterSpacing0"
513
+ }
514
+ },
515
+ "name": "font.ui.[default]",
516
+ "path": ["font", "ui", "[default]"],
517
+ "cleanName": "font.ui"
518
+ }, {
519
+ "attributes": {
520
+ "group": "typography",
521
+ "state": "experimental",
522
+ "introduced": "1.14.0",
523
+ "description": "Single-line non-wrapping supporting text like that in a smaller label."
524
+ },
525
+ "value": {
526
+ "fontSize": 11,
527
+ "fontStyle": "normal",
528
+ "fontWeight": "400",
529
+ "lineHeight": 16,
530
+ "fontFamily": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
531
+ "letterSpacing": "0"
532
+ },
533
+ "filePath": "src/tokens/atlassian-typography-adg3/theme.tsx",
534
+ "isSource": true,
535
+ "original": {
536
+ "attributes": {
537
+ "group": "typography",
538
+ "state": "experimental",
539
+ "introduced": "1.14.0",
540
+ "description": "Single-line non-wrapping supporting text like that in a smaller label."
541
+ },
542
+ "value": {
543
+ "fontWeight": "FontWeight400",
544
+ "fontSize": "LegacyFontSize11",
545
+ "lineHeight": "LineHeight100",
546
+ "fontFamily": "FontFamilyWebSans",
547
+ "fontStyle": "normal",
548
+ "letterSpacing": "LetterSpacing0"
549
+ }
550
+ },
551
+ "name": "font.ui.sm",
552
+ "path": ["font", "ui", "sm"],
553
+ "cleanName": "font.ui.sm"
554
+ }, {
555
+ "attributes": {
556
+ "group": "fontFamily",
557
+ "state": "experimental",
558
+ "introduced": "1.14.0",
559
+ "description": "Helpful guidance goes here"
560
+ },
561
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
562
+ "filePath": "src/tokens/atlassian-typography-adg3/font-family.tsx",
563
+ "isSource": true,
564
+ "original": {
565
+ "attributes": {
566
+ "group": "fontFamily",
567
+ "state": "experimental",
568
+ "introduced": "1.14.0",
569
+ "description": "Helpful guidance goes here"
570
+ },
571
+ "value": "FontFamilyWebMono"
572
+ },
573
+ "name": "font.family.code",
574
+ "path": ["font", "family", "code"],
575
+ "cleanName": "font.family.code"
576
+ }, {
577
+ "attributes": {
578
+ "group": "fontFamily",
579
+ "state": "active",
580
+ "introduced": "0.10.33",
581
+ "description": "Helpful guidance goes here"
582
+ },
583
+ "value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
584
+ "filePath": "src/tokens/atlassian-typography-adg3/font-family.tsx",
585
+ "isSource": true,
586
+ "original": {
587
+ "attributes": {
588
+ "group": "fontFamily",
589
+ "state": "active",
590
+ "introduced": "0.10.33",
591
+ "description": "Helpful guidance goes here"
592
+ },
593
+ "value": "FontFamilyWebMono"
594
+ },
595
+ "name": "font.family.monospace",
596
+ "path": ["font", "family", "monospace"],
597
+ "cleanName": "font.family.monospace"
598
+ }, {
599
+ "attributes": {
600
+ "group": "fontFamily",
601
+ "state": "experimental",
602
+ "introduced": "1.14.0",
603
+ "description": "Helpful guidance goes here"
604
+ },
605
+ "value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
606
+ "filePath": "src/tokens/atlassian-typography-adg3/font-family.tsx",
607
+ "isSource": true,
608
+ "original": {
609
+ "attributes": {
610
+ "group": "fontFamily",
611
+ "state": "experimental",
612
+ "introduced": "1.14.0",
613
+ "description": "Helpful guidance goes here"
614
+ },
615
+ "value": "FontFamilyWebSans"
616
+ },
617
+ "name": "font.family.product",
618
+ "path": ["font", "family", "product"],
619
+ "cleanName": "font.family.product"
620
+ }, {
621
+ "attributes": {
622
+ "group": "fontFamily",
623
+ "state": "active",
624
+ "introduced": "0.10.33",
625
+ "description": "Helpful guidance goes here"
626
+ },
627
+ "value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
628
+ "filePath": "src/tokens/atlassian-typography-adg3/font-family.tsx",
629
+ "isSource": true,
630
+ "original": {
631
+ "attributes": {
632
+ "group": "fontFamily",
633
+ "state": "active",
634
+ "introduced": "0.10.33",
635
+ "description": "Helpful guidance goes here"
636
+ },
637
+ "value": "LegacyFontFamilyWebSans"
638
+ },
639
+ "name": "font.family.sans",
640
+ "path": ["font", "family", "sans"],
641
+ "cleanName": "font.family.sans"
642
+ }, {
643
+ "attributes": {
644
+ "group": "fontFamily",
645
+ "state": "experimental",
646
+ "introduced": "1.14.0",
647
+ "description": "Helpful guidance goes here"
648
+ },
649
+ "value": "Charlie Sans",
650
+ "filePath": "src/tokens/atlassian-typography-adg3/font-family.tsx",
651
+ "isSource": true,
652
+ "original": {
653
+ "attributes": {
654
+ "group": "fontFamily",
655
+ "state": "experimental",
656
+ "introduced": "1.14.0",
657
+ "description": "Helpful guidance goes here"
658
+ },
659
+ "value": "FontFamilyCharlie"
660
+ },
661
+ "name": "font.family.brand",
662
+ "path": ["font", "family", "brand"],
663
+ "cleanName": "font.family.brand"
664
+ }, {
665
+ "attributes": {
666
+ "group": "fontSize",
667
+ "state": "active",
668
+ "introduced": "0.10.33",
669
+ "description": "Helpful guidance goes here"
670
+ },
671
+ "value": "11px",
672
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
673
+ "isSource": true,
674
+ "original": {
675
+ "attributes": {
676
+ "group": "fontSize",
677
+ "state": "active",
678
+ "introduced": "0.10.33",
679
+ "description": "Helpful guidance goes here"
680
+ },
681
+ "value": "LegacyFontSize11"
682
+ },
683
+ "name": "font.size.050",
684
+ "path": ["font", "size", "050"],
685
+ "cleanName": "font.size.050"
686
+ }, {
687
+ "attributes": {
688
+ "group": "fontSize",
689
+ "state": "active",
690
+ "introduced": "0.10.33",
691
+ "description": "Helpful guidance goes here"
692
+ },
693
+ "value": "12px",
694
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
695
+ "isSource": true,
696
+ "original": {
697
+ "attributes": {
698
+ "group": "fontSize",
699
+ "state": "active",
700
+ "introduced": "0.10.33",
701
+ "description": "Helpful guidance goes here"
702
+ },
703
+ "value": "FontSize12"
704
+ },
705
+ "name": "font.size.075",
706
+ "path": ["font", "size", "075"],
707
+ "cleanName": "font.size.075"
708
+ }, {
709
+ "attributes": {
710
+ "group": "fontSize",
711
+ "state": "active",
712
+ "introduced": "0.10.33",
713
+ "description": "Helpful guidance goes here"
714
+ },
715
+ "value": "14px",
716
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
717
+ "isSource": true,
718
+ "original": {
719
+ "attributes": {
720
+ "group": "fontSize",
721
+ "state": "active",
722
+ "introduced": "0.10.33",
723
+ "description": "Helpful guidance goes here"
724
+ },
725
+ "value": "FontSize14"
726
+ },
727
+ "name": "font.size.100",
728
+ "path": ["font", "size", "100"],
729
+ "cleanName": "font.size.100"
730
+ }, {
731
+ "attributes": {
732
+ "group": "fontSize",
733
+ "state": "active",
734
+ "introduced": "0.10.33",
735
+ "description": "Helpful guidance goes here"
736
+ },
737
+ "value": "16px",
738
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
739
+ "isSource": true,
740
+ "original": {
741
+ "attributes": {
742
+ "group": "fontSize",
743
+ "state": "active",
744
+ "introduced": "0.10.33",
745
+ "description": "Helpful guidance goes here"
746
+ },
747
+ "value": "FontSize16"
748
+ },
749
+ "name": "font.size.200",
750
+ "path": ["font", "size", "200"],
751
+ "cleanName": "font.size.200"
752
+ }, {
753
+ "attributes": {
754
+ "group": "fontSize",
755
+ "state": "active",
756
+ "introduced": "0.10.33",
757
+ "description": "Helpful guidance goes here"
758
+ },
759
+ "value": "20px",
760
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
761
+ "isSource": true,
762
+ "original": {
763
+ "attributes": {
764
+ "group": "fontSize",
765
+ "state": "active",
766
+ "introduced": "0.10.33",
767
+ "description": "Helpful guidance goes here"
768
+ },
769
+ "value": "FontSize20"
770
+ },
771
+ "name": "font.size.300",
772
+ "path": ["font", "size", "300"],
773
+ "cleanName": "font.size.300"
774
+ }, {
775
+ "attributes": {
776
+ "group": "fontSize",
777
+ "state": "active",
778
+ "introduced": "0.10.33",
779
+ "description": "Helpful guidance goes here"
780
+ },
781
+ "value": "24px",
782
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
783
+ "isSource": true,
784
+ "original": {
785
+ "attributes": {
786
+ "group": "fontSize",
787
+ "state": "active",
788
+ "introduced": "0.10.33",
789
+ "description": "Helpful guidance goes here"
790
+ },
791
+ "value": "FontSize24"
792
+ },
793
+ "name": "font.size.400",
794
+ "path": ["font", "size", "400"],
795
+ "cleanName": "font.size.400"
796
+ }, {
797
+ "attributes": {
798
+ "group": "fontSize",
799
+ "state": "active",
800
+ "introduced": "0.10.33",
801
+ "description": "Helpful guidance goes here"
802
+ },
803
+ "value": "29px",
804
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
805
+ "isSource": true,
806
+ "original": {
807
+ "attributes": {
808
+ "group": "fontSize",
809
+ "state": "active",
810
+ "introduced": "0.10.33",
811
+ "description": "Helpful guidance goes here"
812
+ },
813
+ "value": "LegacyFontSize29"
814
+ },
815
+ "name": "font.size.500",
816
+ "path": ["font", "size", "500"],
817
+ "cleanName": "font.size.500"
818
+ }, {
819
+ "attributes": {
820
+ "group": "fontSize",
821
+ "state": "active",
822
+ "introduced": "0.10.33",
823
+ "description": "Helpful guidance goes here"
824
+ },
825
+ "value": "35px",
826
+ "filePath": "src/tokens/atlassian-typography-adg3/font-size.tsx",
827
+ "isSource": true,
828
+ "original": {
829
+ "attributes": {
830
+ "group": "fontSize",
831
+ "state": "active",
832
+ "introduced": "0.10.33",
833
+ "description": "Helpful guidance goes here"
834
+ },
835
+ "value": "LegacyFontSize35"
836
+ },
837
+ "name": "font.size.600",
838
+ "path": ["font", "size", "600"],
839
+ "cleanName": "font.size.600"
840
+ }, {
841
+ "attributes": {
842
+ "group": "fontWeight",
843
+ "state": "active",
844
+ "introduced": "0.10.33",
845
+ "description": "Helpful guidance goes here"
846
+ },
847
+ "value": "700",
848
+ "filePath": "src/tokens/atlassian-typography-adg3/font-weight.tsx",
849
+ "isSource": true,
850
+ "original": {
851
+ "attributes": {
852
+ "group": "fontWeight",
853
+ "state": "active",
854
+ "introduced": "0.10.33",
855
+ "description": "Helpful guidance goes here"
856
+ },
857
+ "value": "FontWeight700"
858
+ },
859
+ "name": "font.weight.bold",
860
+ "path": ["font", "weight", "bold"],
861
+ "cleanName": "font.weight.bold"
862
+ }, {
863
+ "attributes": {
864
+ "group": "fontWeight",
865
+ "state": "active",
866
+ "introduced": "0.10.33",
867
+ "description": "Helpful guidance goes here"
868
+ },
869
+ "value": "500",
870
+ "filePath": "src/tokens/atlassian-typography-adg3/font-weight.tsx",
871
+ "isSource": true,
872
+ "original": {
873
+ "attributes": {
874
+ "group": "fontWeight",
875
+ "state": "active",
876
+ "introduced": "0.10.33",
877
+ "description": "Helpful guidance goes here"
878
+ },
879
+ "value": "FontWeight500"
880
+ },
881
+ "name": "font.weight.medium",
882
+ "path": ["font", "weight", "medium"],
883
+ "cleanName": "font.weight.medium"
884
+ }, {
885
+ "attributes": {
886
+ "group": "fontWeight",
887
+ "state": "active",
888
+ "introduced": "0.10.33",
889
+ "description": "Helpful guidance goes here"
890
+ },
891
+ "value": "400",
892
+ "filePath": "src/tokens/atlassian-typography-adg3/font-weight.tsx",
893
+ "isSource": true,
894
+ "original": {
895
+ "attributes": {
896
+ "group": "fontWeight",
897
+ "state": "active",
898
+ "introduced": "0.10.33",
899
+ "description": "Helpful guidance goes here"
900
+ },
901
+ "value": "FontWeight400"
902
+ },
903
+ "name": "font.weight.regular",
904
+ "path": ["font", "weight", "regular"],
905
+ "cleanName": "font.weight.regular"
906
+ }, {
907
+ "attributes": {
908
+ "group": "fontWeight",
909
+ "state": "active",
910
+ "introduced": "0.10.33",
911
+ "description": "Helpful guidance goes here"
912
+ },
913
+ "value": "600",
914
+ "filePath": "src/tokens/atlassian-typography-adg3/font-weight.tsx",
915
+ "isSource": true,
916
+ "original": {
917
+ "attributes": {
918
+ "group": "fontWeight",
919
+ "state": "active",
920
+ "introduced": "0.10.33",
921
+ "description": "Helpful guidance goes here"
922
+ },
923
+ "value": "FontWeight600"
924
+ },
925
+ "name": "font.weight.semibold",
926
+ "path": ["font", "weight", "semibold"],
927
+ "cleanName": "font.weight.semibold"
928
+ }, {
929
+ "attributes": {
930
+ "group": "lineHeight",
931
+ "state": "active",
932
+ "introduced": "0.10.33",
933
+ "description": "Used single-line text."
934
+ },
935
+ "value": "1",
936
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
937
+ "isSource": true,
938
+ "original": {
939
+ "attributes": {
940
+ "group": "lineHeight",
941
+ "state": "active",
942
+ "introduced": "0.10.33",
943
+ "description": "Used single-line text."
944
+ },
945
+ "value": "LineHeight1"
946
+ },
947
+ "name": "font.lineHeight.1",
948
+ "path": ["font", "lineHeight", "1"],
949
+ "cleanName": "font.lineHeight.1"
950
+ }, {
951
+ "attributes": {
952
+ "group": "lineHeight",
953
+ "state": "active",
954
+ "introduced": "0.10.33",
955
+ "description": "Helpful guidance goes here"
956
+ },
957
+ "value": "16px",
958
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
959
+ "isSource": true,
960
+ "original": {
961
+ "attributes": {
962
+ "group": "lineHeight",
963
+ "state": "active",
964
+ "introduced": "0.10.33",
965
+ "description": "Helpful guidance goes here"
966
+ },
967
+ "value": "LineHeight100"
968
+ },
969
+ "name": "font.lineHeight.100",
970
+ "path": ["font", "lineHeight", "100"],
971
+ "cleanName": "font.lineHeight.100"
972
+ }, {
973
+ "attributes": {
974
+ "group": "lineHeight",
975
+ "state": "active",
976
+ "introduced": "0.10.33",
977
+ "description": "Helpful guidance goes here"
978
+ },
979
+ "value": "20px",
980
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
981
+ "isSource": true,
982
+ "original": {
983
+ "attributes": {
984
+ "group": "lineHeight",
985
+ "state": "active",
986
+ "introduced": "0.10.33",
987
+ "description": "Helpful guidance goes here"
988
+ },
989
+ "value": "LineHeight200"
990
+ },
991
+ "name": "font.lineHeight.200",
992
+ "path": ["font", "lineHeight", "200"],
993
+ "cleanName": "font.lineHeight.200"
994
+ }, {
995
+ "attributes": {
996
+ "group": "lineHeight",
997
+ "state": "active",
998
+ "introduced": "0.10.33",
999
+ "description": "Helpful guidance goes here"
1000
+ },
1001
+ "value": "24px",
1002
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
1003
+ "isSource": true,
1004
+ "original": {
1005
+ "attributes": {
1006
+ "group": "lineHeight",
1007
+ "state": "active",
1008
+ "introduced": "0.10.33",
1009
+ "description": "Helpful guidance goes here"
1010
+ },
1011
+ "value": "LineHeight300"
1012
+ },
1013
+ "name": "font.lineHeight.300",
1014
+ "path": ["font", "lineHeight", "300"],
1015
+ "cleanName": "font.lineHeight.300"
1016
+ }, {
1017
+ "attributes": {
1018
+ "group": "lineHeight",
1019
+ "state": "active",
1020
+ "introduced": "0.10.33",
1021
+ "description": "Helpful guidance goes here"
1022
+ },
1023
+ "value": "28px",
1024
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
1025
+ "isSource": true,
1026
+ "original": {
1027
+ "attributes": {
1028
+ "group": "lineHeight",
1029
+ "state": "active",
1030
+ "introduced": "0.10.33",
1031
+ "description": "Helpful guidance goes here"
1032
+ },
1033
+ "value": "LineHeight400"
1034
+ },
1035
+ "name": "font.lineHeight.400",
1036
+ "path": ["font", "lineHeight", "400"],
1037
+ "cleanName": "font.lineHeight.400"
1038
+ }, {
1039
+ "attributes": {
1040
+ "group": "lineHeight",
1041
+ "state": "active",
1042
+ "introduced": "0.10.33",
1043
+ "description": "Helpful guidance goes here"
1044
+ },
1045
+ "value": "32px",
1046
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
1047
+ "isSource": true,
1048
+ "original": {
1049
+ "attributes": {
1050
+ "group": "lineHeight",
1051
+ "state": "active",
1052
+ "introduced": "0.10.33",
1053
+ "description": "Helpful guidance goes here"
1054
+ },
1055
+ "value": "LineHeight500"
1056
+ },
1057
+ "name": "font.lineHeight.500",
1058
+ "path": ["font", "lineHeight", "500"],
1059
+ "cleanName": "font.lineHeight.500"
1060
+ }, {
1061
+ "attributes": {
1062
+ "group": "lineHeight",
1063
+ "state": "active",
1064
+ "introduced": "0.10.33",
1065
+ "description": "Helpful guidance goes here"
1066
+ },
1067
+ "value": "40px",
1068
+ "filePath": "src/tokens/atlassian-typography-adg3/line-height.tsx",
1069
+ "isSource": true,
1070
+ "original": {
1071
+ "attributes": {
1072
+ "group": "lineHeight",
1073
+ "state": "active",
1074
+ "introduced": "0.10.33",
1075
+ "description": "Helpful guidance goes here"
1076
+ },
1077
+ "value": "LineHeight700"
1078
+ },
1079
+ "name": "font.lineHeight.600",
1080
+ "path": ["font", "lineHeight", "600"],
1081
+ "cleanName": "font.lineHeight.600"
1082
+ }];
1083
+ var _default = tokens;
1084
+ exports.default = _default;