@atlaskit/tokens 1.14.2 → 1.15.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 (146) hide show
  1. package/CHANGELOG.md +6 -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 +277 -37
  5. package/dist/cjs/artifacts/theme-import-map.js +10 -4
  6. package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
  7. package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
  8. package/dist/cjs/artifacts/token-default-values.js +23 -2
  9. package/dist/cjs/artifacts/token-names.js +22 -1
  10. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
  11. package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
  12. package/dist/cjs/entry-points/tokens-raw.js +2 -2
  13. package/dist/cjs/get-token-value.js +1 -1
  14. package/dist/cjs/get-token.js +1 -1
  15. package/dist/cjs/palettes/typography-palette.js +121 -16
  16. package/dist/cjs/theme-config.js +12 -4
  17. package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
  18. package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
  19. package/dist/cjs/tokens/atlassian-typography/utils.js +29 -0
  20. package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
  21. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
  22. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
  23. package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
  24. package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
  25. package/dist/cjs/tokens/atlassian-typography-adg3/utils.js +29 -0
  26. package/dist/cjs/tokens/default/typography/font-family.js +24 -0
  27. package/dist/cjs/tokens/default/typography/font.js +133 -0
  28. package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
  29. package/dist/cjs/tokens/default/typography/line-height.js +8 -0
  30. package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  31. package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  32. package/dist/es2019/artifacts/palettes-raw/typography-palette.js +277 -37
  33. package/dist/es2019/artifacts/theme-import-map.js +6 -4
  34. package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
  35. package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
  36. package/dist/es2019/artifacts/token-default-values.js +23 -2
  37. package/dist/es2019/artifacts/token-names.js +22 -1
  38. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  39. package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
  40. package/dist/es2019/entry-points/tokens-raw.js +1 -1
  41. package/dist/es2019/get-token-value.js +1 -1
  42. package/dist/es2019/get-token.js +1 -1
  43. package/dist/es2019/palettes/typography-palette.js +123 -17
  44. package/dist/es2019/theme-config.js +12 -4
  45. package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
  46. package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
  47. package/dist/es2019/tokens/atlassian-typography/utils.js +22 -0
  48. package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
  49. package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
  50. package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  51. package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
  52. package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
  53. package/dist/es2019/tokens/atlassian-typography-adg3/utils.js +22 -0
  54. package/dist/es2019/tokens/default/typography/font-family.js +24 -0
  55. package/dist/es2019/tokens/default/typography/font.js +126 -0
  56. package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
  57. package/dist/es2019/tokens/default/typography/line-height.js +8 -0
  58. package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
  59. package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
  60. package/dist/esm/artifacts/palettes-raw/typography-palette.js +277 -37
  61. package/dist/esm/artifacts/theme-import-map.js +8 -4
  62. package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
  63. package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
  64. package/dist/esm/artifacts/token-default-values.js +23 -2
  65. package/dist/esm/artifacts/token-names.js +22 -1
  66. package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
  67. package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
  68. package/dist/esm/entry-points/tokens-raw.js +1 -1
  69. package/dist/esm/get-token-value.js +1 -1
  70. package/dist/esm/get-token.js +1 -1
  71. package/dist/esm/palettes/typography-palette.js +121 -16
  72. package/dist/esm/theme-config.js +12 -4
  73. package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
  74. package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
  75. package/dist/esm/tokens/atlassian-typography/utils.js +22 -0
  76. package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
  77. package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
  78. package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
  79. package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
  80. package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
  81. package/dist/esm/tokens/atlassian-typography-adg3/utils.js +22 -0
  82. package/dist/esm/tokens/default/typography/font-family.js +24 -0
  83. package/dist/esm/tokens/default/typography/font.js +126 -0
  84. package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
  85. package/dist/esm/tokens/default/typography/line-height.js +8 -0
  86. package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  87. package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  88. package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  89. package/dist/types/artifacts/theme-import-map.d.ts +1 -1
  90. package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  91. package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
  92. package/dist/types/artifacts/token-default-values.d.ts +23 -2
  93. package/dist/types/artifacts/token-names.d.ts +43 -1
  94. package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  95. package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  96. package/dist/types/artifacts/types-internal.d.ts +2 -2
  97. package/dist/types/artifacts/types.d.ts +2 -2
  98. package/dist/types/entry-points/tokens-raw.d.ts +1 -1
  99. package/dist/types/palettes/typography-palette.d.ts +8 -6
  100. package/dist/types/theme-config.d.ts +4 -4
  101. package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
  102. package/dist/types/tokens/atlassian-typography/utils.d.ts +4 -0
  103. package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  104. package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  105. package/dist/types/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
  106. package/dist/types/tokens/default/typography/font.d.ts +20 -0
  107. package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
  108. package/dist/types/types.d.ts +111 -22
  109. package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
  110. package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
  111. package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
  112. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
  113. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
  114. package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
  115. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +23 -2
  116. package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
  117. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
  118. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
  119. package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
  120. package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
  121. package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
  122. package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
  123. package/dist/types-ts4.5/theme-config.d.ts +5 -3
  124. package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
  125. package/dist/types-ts4.5/tokens/atlassian-typography/utils.d.ts +4 -0
  126. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
  127. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
  128. package/dist/types-ts4.5/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
  129. package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
  130. package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
  131. package/dist/types-ts4.5/types.d.ts +111 -22
  132. package/figma/atlassian-typography-adg3.json +150 -0
  133. package/figma/atlassian-typography.json +19 -82
  134. package/package.json +1 -1
  135. package/report.api.md +60 -2
  136. package/tmp/api-report-tmp.d.ts +49 -7
  137. package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
  138. package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
  139. package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
  140. package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
  141. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  142. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  143. /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
  144. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
  145. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
  146. /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
@@ -0,0 +1,140 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var typography = {
8
+ font: {
9
+ heading: {
10
+ xxl: {
11
+ value: {
12
+ fontWeight: 'FontWeight500',
13
+ fontSize: 'LegacyFontSize35',
14
+ lineHeight: 'LineHeight600',
15
+ fontFamily: 'FontFamilyWebSans',
16
+ fontStyle: 'normal',
17
+ letterSpacing: 'LetterSpacing400'
18
+ }
19
+ },
20
+ xl: {
21
+ value: {
22
+ fontWeight: 'FontWeight600',
23
+ fontSize: 'LegacyFontSize29',
24
+ lineHeight: 'LineHeight500',
25
+ fontFamily: 'FontFamilyWebSans',
26
+ fontStyle: 'normal',
27
+ letterSpacing: 'LetterSpacing400'
28
+ }
29
+ },
30
+ lg: {
31
+ value: {
32
+ fontWeight: 'FontWeight500',
33
+ fontSize: 'FontSize24',
34
+ lineHeight: 'LineHeight400',
35
+ fontFamily: 'FontFamilyWebSans',
36
+ fontStyle: 'normal',
37
+ letterSpacing: 'LetterSpacing400'
38
+ }
39
+ },
40
+ md: {
41
+ value: {
42
+ fontWeight: 'FontWeight500',
43
+ fontSize: 'FontSize20',
44
+ lineHeight: 'LineHeight300',
45
+ fontFamily: 'FontFamilyWebSans',
46
+ fontStyle: 'normal',
47
+ letterSpacing: 'LetterSpacing300'
48
+ }
49
+ },
50
+ sm: {
51
+ value: {
52
+ fontWeight: 'FontWeight600',
53
+ fontSize: 'FontSize16',
54
+ lineHeight: 'LineHeight200',
55
+ fontFamily: 'FontFamilyWebSans',
56
+ fontStyle: 'normal',
57
+ letterSpacing: 'LetterSpacing200'
58
+ }
59
+ },
60
+ xs: {
61
+ value: {
62
+ fontWeight: 'FontWeight600',
63
+ fontSize: 'FontSize14',
64
+ lineHeight: 'LineHeight100',
65
+ fontFamily: 'FontFamilyWebSans',
66
+ fontStyle: 'normal',
67
+ letterSpacing: 'LetterSpacing100'
68
+ }
69
+ },
70
+ xxs: {
71
+ value: {
72
+ fontWeight: 'FontWeight600',
73
+ fontSize: 'FontSize12',
74
+ lineHeight: 'LineHeight100',
75
+ fontFamily: 'FontFamilyWebSans',
76
+ fontStyle: 'normal',
77
+ letterSpacing: 'LetterSpacing0'
78
+ }
79
+ }
80
+ },
81
+ code: {
82
+ '[default]': {
83
+ value: {
84
+ fontWeight: 'FontWeight400',
85
+ fontSize: 'FontSizeCode',
86
+ lineHeight: 'LineHeight1',
87
+ fontFamily: 'FontFamilyWebMono',
88
+ fontStyle: 'normal',
89
+ letterSpacing: 'LetterSpacing0'
90
+ }
91
+ }
92
+ },
93
+ body: {
94
+ '[default]': {
95
+ value: {
96
+ fontWeight: 'FontWeight400',
97
+ fontSize: 'FontSize14',
98
+ lineHeight: 'LineHeight200',
99
+ fontFamily: 'FontFamilyWebSans',
100
+ fontStyle: 'normal',
101
+ letterSpacing: 'LetterSpacing0'
102
+ }
103
+ },
104
+ sm: {
105
+ value: {
106
+ fontWeight: 'FontWeight400',
107
+ fontSize: 'FontSize11',
108
+ lineHeight: 'LineHeight200',
109
+ fontFamily: 'FontFamilyWebSans',
110
+ fontStyle: 'normal',
111
+ letterSpacing: 'LetterSpacing0'
112
+ }
113
+ }
114
+ },
115
+ ui: {
116
+ '[default]': {
117
+ value: {
118
+ fontWeight: 'FontWeight400',
119
+ fontSize: 'FontSize14',
120
+ lineHeight: 'LineHeight100',
121
+ fontFamily: 'FontFamilyWebSans',
122
+ fontStyle: 'normal',
123
+ letterSpacing: 'LetterSpacing0'
124
+ }
125
+ },
126
+ sm: {
127
+ value: {
128
+ fontWeight: 'FontWeight400',
129
+ fontSize: 'FontSize11',
130
+ lineHeight: 'LineHeight100',
131
+ fontFamily: 'FontFamilyWebSans',
132
+ fontStyle: 'normal',
133
+ letterSpacing: 'LetterSpacing0'
134
+ }
135
+ }
136
+ }
137
+ }
138
+ };
139
+ var _default = typography;
140
+ exports.default = _default;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var font = {
8
+ font: {
9
+ letterSpacing: {
10
+ '0': {
11
+ value: 'LetterSpacing0'
12
+ },
13
+ '100': {
14
+ value: 'LetterSpacing100'
15
+ },
16
+ '200': {
17
+ value: 'LetterSpacing200'
18
+ },
19
+ '300': {
20
+ value: 'LetterSpacing300'
21
+ },
22
+ '400': {
23
+ value: 'LetterSpacing400'
24
+ }
25
+ }
26
+ }
27
+ };
28
+ var _default = font;
29
+ exports.default = _default;
@@ -22,6 +22,30 @@ var font = {
22
22
  introduced: '0.10.33',
23
23
  description: 'Helpful guidance goes here'
24
24
  }
25
+ },
26
+ code: {
27
+ attributes: {
28
+ group: 'fontFamily',
29
+ state: 'experimental',
30
+ introduced: '1.14.0',
31
+ description: 'Helpful guidance goes here'
32
+ }
33
+ },
34
+ brand: {
35
+ attributes: {
36
+ group: 'fontFamily',
37
+ state: 'experimental',
38
+ introduced: '1.14.0',
39
+ description: 'Helpful guidance goes here'
40
+ }
41
+ },
42
+ product: {
43
+ attributes: {
44
+ group: 'fontFamily',
45
+ state: 'experimental',
46
+ introduced: '1.14.0',
47
+ description: 'Helpful guidance goes here'
48
+ }
25
49
  }
26
50
  }
27
51
  }
@@ -0,0 +1,133 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ /**
8
+ *
9
+ * @example
10
+ * ```js
11
+ * {
12
+ * body: {
13
+ * value: {
14
+ * fontWeight: 500,
15
+ * fontSize: "16px",
16
+ * lineHeight: "22px",
17
+ * fontFamily: "Helvetica",
18
+ * fontStyle: "italic"
19
+ * },
20
+ * type: "typography"
21
+ *}
22
+ * ```
23
+ */
24
+ var font = {
25
+ font: {
26
+ code: {
27
+ '[default]': {
28
+ attributes: {
29
+ group: 'typography',
30
+ state: 'experimental',
31
+ introduced: '1.14.0',
32
+ description: 'Used for monospace and code.'
33
+ }
34
+ }
35
+ },
36
+ heading: {
37
+ xxl: {
38
+ attributes: {
39
+ group: 'typography',
40
+ state: 'experimental',
41
+ introduced: '1.14.0',
42
+ description: 'TBD'
43
+ }
44
+ },
45
+ xl: {
46
+ attributes: {
47
+ group: 'typography',
48
+ state: 'experimental',
49
+ introduced: '1.14.0',
50
+ description: 'TBD'
51
+ }
52
+ },
53
+ lg: {
54
+ attributes: {
55
+ group: 'typography',
56
+ state: 'experimental',
57
+ introduced: '1.14.0',
58
+ description: 'TBD'
59
+ }
60
+ },
61
+ md: {
62
+ attributes: {
63
+ group: 'typography',
64
+ state: 'experimental',
65
+ introduced: '1.14.0',
66
+ description: 'TBD'
67
+ }
68
+ },
69
+ sm: {
70
+ attributes: {
71
+ group: 'typography',
72
+ state: 'experimental',
73
+ introduced: '1.14.0',
74
+ description: 'TBD'
75
+ }
76
+ },
77
+ xs: {
78
+ attributes: {
79
+ group: 'typography',
80
+ state: 'experimental',
81
+ introduced: '1.14.0',
82
+ description: 'TBD'
83
+ }
84
+ },
85
+ xxs: {
86
+ attributes: {
87
+ group: 'typography',
88
+ state: 'experimental',
89
+ introduced: '1.14.0',
90
+ description: 'TBD'
91
+ }
92
+ }
93
+ },
94
+ ui: {
95
+ sm: {
96
+ attributes: {
97
+ group: 'typography',
98
+ state: 'experimental',
99
+ introduced: '1.14.0',
100
+ description: 'Single-line non-wrapping supporting text like that in a smaller label.'
101
+ }
102
+ },
103
+ '[default]': {
104
+ attributes: {
105
+ group: 'typography',
106
+ state: 'experimental',
107
+ introduced: '1.14.0',
108
+ description: 'Single-line non-wrapping text like that in a button.'
109
+ }
110
+ }
111
+ },
112
+ body: {
113
+ sm: {
114
+ attributes: {
115
+ group: 'typography',
116
+ state: 'experimental',
117
+ introduced: '1.14.0',
118
+ description: 'Smaller body font.'
119
+ }
120
+ },
121
+ '[default]': {
122
+ attributes: {
123
+ group: 'typography',
124
+ state: 'experimental',
125
+ introduced: '1.14.0',
126
+ description: 'The default body font.'
127
+ }
128
+ }
129
+ }
130
+ }
131
+ };
132
+ var _default = font;
133
+ exports.default = _default;
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var font = {
8
+ font: {
9
+ letterSpacing: {
10
+ '0': {
11
+ attributes: {
12
+ group: 'letterSpacing',
13
+ state: 'active',
14
+ introduced: '0.10.33',
15
+ description: 'Helpful guidance goes here'
16
+ }
17
+ },
18
+ '100': {
19
+ attributes: {
20
+ group: 'letterSpacing',
21
+ state: 'active',
22
+ introduced: '0.10.33',
23
+ description: 'Helpful guidance goes here'
24
+ }
25
+ },
26
+ '200': {
27
+ attributes: {
28
+ group: 'letterSpacing',
29
+ state: 'active',
30
+ introduced: '0.10.33',
31
+ description: 'Helpful guidance goes here'
32
+ }
33
+ },
34
+ '300': {
35
+ attributes: {
36
+ group: 'letterSpacing',
37
+ state: 'active',
38
+ introduced: '0.10.33',
39
+ description: 'Helpful guidance goes here'
40
+ }
41
+ },
42
+ '400': {
43
+ attributes: {
44
+ group: 'letterSpacing',
45
+ state: 'active',
46
+ introduced: '0.10.33',
47
+ description: 'Helpful guidance goes here'
48
+ }
49
+ }
50
+ }
51
+ }
52
+ };
53
+ var _default = font;
54
+ exports.default = _default;
@@ -7,6 +7,14 @@ exports.default = void 0;
7
7
  var font = {
8
8
  font: {
9
9
  lineHeight: {
10
+ '1': {
11
+ attributes: {
12
+ group: 'lineHeight',
13
+ state: 'active',
14
+ introduced: '0.10.33',
15
+ description: 'Used single-line text.'
16
+ }
17
+ },
10
18
  '100': {
11
19
  attributes: {
12
20
  group: 'lineHeight',
@@ -3,14 +3,14 @@
3
3
  *
4
4
  * Token names mapped to their values, used for contrast checking when generating custom themes
5
5
  *
6
- * @codegen <<SignedSource::2d922d82772ca155fb2fe7b5c63dc69a>>
6
+ * @codegen <<SignedSource::5aed53e696137cdd59ece99fb9755c09>>
7
7
  * @codegenCommand yarn build tokens
8
8
  */
9
9
  const tokenValues = {
10
10
  'color.text.brand': '#579DFF',
11
11
  'elevation.surface.overlay': '#282E33',
12
- 'color.text.selected': '#579DFF',
13
12
  'color.background.selected': '#092957',
13
+ 'color.text.selected': '#579DFF',
14
14
  'color.border.brand': '#579DFF',
15
15
  'color.chart.brand': '#388BFF',
16
16
  'color.text.inverse': '#1D2125'
@@ -3,14 +3,14 @@
3
3
  *
4
4
  * Token names mapped to their values, used for contrast checking when generating custom themes
5
5
  *
6
- * @codegen <<SignedSource::068e846d4121ab9afc08e7a1f99dbb5e>>
6
+ * @codegen <<SignedSource::2e18f7ef8f76f499aeeb6d93e94be25e>>
7
7
  * @codegenCommand yarn build tokens
8
8
  */
9
9
  const tokenValues = {
10
10
  'color.text.brand': '#0C66E4',
11
11
  'elevation.surface.sunken': '#F7F8F9',
12
- 'color.text.selected': '#0C66E4',
13
12
  'color.background.selected': '#E9F2FF',
13
+ 'color.text.selected': '#0C66E4',
14
14
  'color.border.brand': '#0C66E4',
15
15
  'color.chart.brand': '#1D7AFC',
16
16
  'color.text.inverse': '#FFFFFF'