@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.
- package/CHANGELOG.md +12 -0
- package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +313 -43
- package/dist/cjs/artifacts/theme-import-map.js +16 -4
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
- package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +13 -0
- package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +23 -2
- package/dist/cjs/artifacts/token-names.js +22 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +666 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/cjs/entry-points/tokens-raw.js +2 -2
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/typography-palette.js +133 -16
- package/dist/cjs/theme-config.js +20 -4
- package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/cjs/tokens/atlassian-typography/letter-spacing.js +29 -0
- package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
- package/dist/cjs/tokens/atlassian-typography-adg3/letter-spacing.js +29 -0
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography-minor3/font-family.js +29 -0
- package/dist/cjs/tokens/atlassian-typography-minor3/letter-spacing.js +29 -0
- package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +140 -0
- package/dist/cjs/tokens/default/typography/font-family.js +24 -0
- package/dist/cjs/tokens/default/typography/font.js +133 -0
- package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
- package/dist/cjs/tokens/default/typography/line-height.js +8 -0
- package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +313 -43
- package/dist/es2019/artifacts/theme-import-map.js +8 -4
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
- package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +31 -0
- package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
- package/dist/es2019/artifacts/token-default-values.js +23 -2
- package/dist/es2019/artifacts/token-names.js +22 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/es2019/entry-points/tokens-raw.js +1 -1
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/typography-palette.js +135 -17
- package/dist/es2019/theme-config.js +20 -4
- package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/es2019/tokens/atlassian-typography/letter-spacing.js +22 -0
- package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
- package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography-minor3/font-family.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +133 -0
- package/dist/es2019/tokens/default/typography/font-family.js +24 -0
- package/dist/es2019/tokens/default/typography/font.js +126 -0
- package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/es2019/tokens/default/typography/line-height.js +8 -0
- package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +313 -43
- package/dist/esm/artifacts/theme-import-map.js +12 -4
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +23 -2
- package/dist/esm/artifacts/token-names.js +22 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +659 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/esm/entry-points/tokens-raw.js +1 -1
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/typography-palette.js +133 -16
- package/dist/esm/theme-config.js +20 -4
- package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/esm/tokens/atlassian-typography/letter-spacing.js +22 -0
- package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/esm/tokens/atlassian-typography-adg3/letter-spacing.js +22 -0
- package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +4 -1
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography-minor3/font-family.js +22 -0
- package/dist/esm/tokens/atlassian-typography-minor3/letter-spacing.js +22 -0
- package/dist/esm/tokens/atlassian-typography-minor3/theme.js +133 -0
- package/dist/esm/tokens/default/typography/font-family.js +24 -0
- package/dist/esm/tokens/default/typography/font.js +126 -0
- package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/esm/tokens/default/typography/line-height.js +8 -0
- package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +23 -2
- package/dist/types/artifacts/token-names.d.ts +43 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/palettes/typography-palette.d.ts +8 -6
- package/dist/types/theme-config.d.ts +4 -4
- package/dist/types/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
- package/dist/types/tokens/default/typography/font.d.ts +20 -0
- package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types/types.d.ts +111 -22
- package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +23 -2
- package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +137 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
- package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types-ts4.5/index.d.ts +1 -1
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
- package/dist/types-ts4.5/theme-config.d.ts +7 -3
- package/dist/types-ts4.5/tokens/atlassian-typography/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/font-family.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
- package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/types.d.ts +111 -22
- package/figma/atlassian-typography-adg3.json +150 -0
- package/figma/atlassian-typography-minor3.json +51 -0
- package/figma/atlassian-typography.json +19 -82
- package/package.json +1 -2
- package/report.api.md +87 -2
- package/tmp/api-report-tmp.d.ts +65 -7
- package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
- package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/tokens
|
|
2
2
|
|
|
3
|
+
## 1.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`2b79cf3df13`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2b79cf3df13) - Patches certain token values in the internal typography theme.
|
|
8
|
+
|
|
9
|
+
## 1.15.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`6b31bb82f08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b31bb82f08) - Introduces experimental typography theme (v2).
|
|
14
|
+
|
|
3
15
|
## 1.14.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -9,14 +9,14 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* Token names mapped to their values, used for contrast checking when generating custom themes
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::5aed53e696137cdd59ece99fb9755c09>>
|
|
13
13
|
* @codegenCommand yarn build tokens
|
|
14
14
|
*/
|
|
15
15
|
var tokenValues = {
|
|
16
16
|
'color.text.brand': '#579DFF',
|
|
17
17
|
'elevation.surface.overlay': '#282E33',
|
|
18
|
-
'color.text.selected': '#579DFF',
|
|
19
18
|
'color.background.selected': '#092957',
|
|
19
|
+
'color.text.selected': '#579DFF',
|
|
20
20
|
'color.border.brand': '#579DFF',
|
|
21
21
|
'color.chart.brand': '#388BFF',
|
|
22
22
|
'color.text.inverse': '#1D2125'
|
|
@@ -9,14 +9,14 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* Token names mapped to their values, used for contrast checking when generating custom themes
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::2e18f7ef8f76f499aeeb6d93e94be25e>>
|
|
13
13
|
* @codegenCommand yarn build tokens
|
|
14
14
|
*/
|
|
15
15
|
var tokenValues = {
|
|
16
16
|
'color.text.brand': '#0C66E4',
|
|
17
17
|
'elevation.surface.sunken': '#F7F8F9',
|
|
18
|
-
'color.text.selected': '#0C66E4',
|
|
19
18
|
'color.background.selected': '#E9F2FF',
|
|
19
|
+
'color.text.selected': '#0C66E4',
|
|
20
20
|
'color.border.brand': '#0C66E4',
|
|
21
21
|
'color.chart.brand': '#1D7AFC',
|
|
22
22
|
'color.text.inverse': '#FFFFFF'
|
|
@@ -6,54 +6,129 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
/**
|
|
8
8
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
-
* @codegen <<SignedSource::
|
|
9
|
+
* @codegen <<SignedSource::c5a499034468ced262952ef968c2fd67>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
12
|
var tokens = [{
|
|
13
|
-
"value": "
|
|
13
|
+
"value": "Roboto Mono",
|
|
14
14
|
"attributes": {
|
|
15
15
|
"group": "typography"
|
|
16
16
|
},
|
|
17
17
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
18
18
|
"isSource": true,
|
|
19
19
|
"original": {
|
|
20
|
-
"value": "
|
|
20
|
+
"value": "Roboto Mono",
|
|
21
21
|
"attributes": {
|
|
22
22
|
"group": "typography"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
"name": "typography.fontFamily.
|
|
26
|
-
"path": ["typography", "fontFamily", "
|
|
25
|
+
"name": "typography.fontFamily.FontFamilyAndroidMono",
|
|
26
|
+
"path": ["typography", "fontFamily", "FontFamilyAndroidMono"]
|
|
27
27
|
}, {
|
|
28
|
-
"value": "
|
|
28
|
+
"value": "Roboto",
|
|
29
29
|
"attributes": {
|
|
30
30
|
"group": "typography"
|
|
31
31
|
},
|
|
32
32
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
33
33
|
"isSource": true,
|
|
34
34
|
"original": {
|
|
35
|
-
"value": "
|
|
35
|
+
"value": "Roboto",
|
|
36
36
|
"attributes": {
|
|
37
37
|
"group": "typography"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
-
"name": "typography.fontFamily.
|
|
41
|
-
"path": ["typography", "fontFamily", "
|
|
40
|
+
"name": "typography.fontFamily.FontFamilyAndroidSans",
|
|
41
|
+
"path": ["typography", "fontFamily", "FontFamilyAndroidSans"]
|
|
42
42
|
}, {
|
|
43
|
-
"value": "
|
|
43
|
+
"value": "Charlie Sans",
|
|
44
44
|
"attributes": {
|
|
45
45
|
"group": "typography"
|
|
46
46
|
},
|
|
47
47
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
48
48
|
"isSource": true,
|
|
49
49
|
"original": {
|
|
50
|
-
"value":
|
|
50
|
+
"value": "Charlie Sans",
|
|
51
|
+
"attributes": {
|
|
52
|
+
"group": "typography"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"name": "typography.fontFamily.FontFamilyCharlie",
|
|
56
|
+
"path": ["typography", "fontFamily", "FontFamilyCharlie"]
|
|
57
|
+
}, {
|
|
58
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
|
|
59
|
+
"attributes": {
|
|
60
|
+
"group": "typography"
|
|
61
|
+
},
|
|
62
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
63
|
+
"isSource": true,
|
|
64
|
+
"original": {
|
|
65
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
|
|
51
66
|
"attributes": {
|
|
52
67
|
"group": "typography"
|
|
53
68
|
}
|
|
54
69
|
},
|
|
55
|
-
"name": "typography.
|
|
56
|
-
"path": ["typography", "
|
|
70
|
+
"name": "typography.fontFamily.FontFamilyWebMono",
|
|
71
|
+
"path": ["typography", "fontFamily", "FontFamilyWebMono"]
|
|
72
|
+
}, {
|
|
73
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
|
|
74
|
+
"attributes": {
|
|
75
|
+
"group": "typography"
|
|
76
|
+
},
|
|
77
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
78
|
+
"isSource": true,
|
|
79
|
+
"original": {
|
|
80
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
|
|
81
|
+
"attributes": {
|
|
82
|
+
"group": "typography"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"name": "typography.fontFamily.FontFamilyWebSans",
|
|
86
|
+
"path": ["typography", "fontFamily", "FontFamilyWebSans"]
|
|
87
|
+
}, {
|
|
88
|
+
"value": "SF Mono",
|
|
89
|
+
"attributes": {
|
|
90
|
+
"group": "typography"
|
|
91
|
+
},
|
|
92
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
93
|
+
"isSource": true,
|
|
94
|
+
"original": {
|
|
95
|
+
"value": "SF Mono",
|
|
96
|
+
"attributes": {
|
|
97
|
+
"group": "typography"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"name": "typography.fontFamily.FontFamilyiOSMono",
|
|
101
|
+
"path": ["typography", "fontFamily", "FontFamilyiOSMono"]
|
|
102
|
+
}, {
|
|
103
|
+
"value": "SF Pro",
|
|
104
|
+
"attributes": {
|
|
105
|
+
"group": "typography"
|
|
106
|
+
},
|
|
107
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
108
|
+
"isSource": true,
|
|
109
|
+
"original": {
|
|
110
|
+
"value": "SF Pro",
|
|
111
|
+
"attributes": {
|
|
112
|
+
"group": "typography"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"name": "typography.fontFamily.FontFamilyiOSSans",
|
|
116
|
+
"path": ["typography", "fontFamily", "FontFamilyiOSSans"]
|
|
117
|
+
}, {
|
|
118
|
+
"value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
|
|
119
|
+
"attributes": {
|
|
120
|
+
"group": "typography"
|
|
121
|
+
},
|
|
122
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
123
|
+
"isSource": true,
|
|
124
|
+
"original": {
|
|
125
|
+
"value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
|
|
126
|
+
"attributes": {
|
|
127
|
+
"group": "typography"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"name": "typography.fontFamily.LegacyFontFamilyWebSans",
|
|
131
|
+
"path": ["typography", "fontFamily", "LegacyFontFamilyWebSans"]
|
|
57
132
|
}, {
|
|
58
133
|
"value": "12px",
|
|
59
134
|
"attributes": {
|
|
@@ -67,8 +142,8 @@ var tokens = [{
|
|
|
67
142
|
"group": "typography"
|
|
68
143
|
}
|
|
69
144
|
},
|
|
70
|
-
"name": "typography.fontSize.
|
|
71
|
-
"path": ["typography", "fontSize", "
|
|
145
|
+
"name": "typography.fontSize.FontSize12",
|
|
146
|
+
"path": ["typography", "fontSize", "FontSize12"]
|
|
72
147
|
}, {
|
|
73
148
|
"value": "14px",
|
|
74
149
|
"attributes": {
|
|
@@ -82,8 +157,8 @@ var tokens = [{
|
|
|
82
157
|
"group": "typography"
|
|
83
158
|
}
|
|
84
159
|
},
|
|
85
|
-
"name": "typography.fontSize.
|
|
86
|
-
"path": ["typography", "fontSize", "
|
|
160
|
+
"name": "typography.fontSize.FontSize14",
|
|
161
|
+
"path": ["typography", "fontSize", "FontSize14"]
|
|
87
162
|
}, {
|
|
88
163
|
"value": "16px",
|
|
89
164
|
"attributes": {
|
|
@@ -97,8 +172,8 @@ var tokens = [{
|
|
|
97
172
|
"group": "typography"
|
|
98
173
|
}
|
|
99
174
|
},
|
|
100
|
-
"name": "typography.fontSize.
|
|
101
|
-
"path": ["typography", "fontSize", "
|
|
175
|
+
"name": "typography.fontSize.FontSize16",
|
|
176
|
+
"path": ["typography", "fontSize", "FontSize16"]
|
|
102
177
|
}, {
|
|
103
178
|
"value": "20px",
|
|
104
179
|
"attributes": {
|
|
@@ -112,8 +187,8 @@ var tokens = [{
|
|
|
112
187
|
"group": "typography"
|
|
113
188
|
}
|
|
114
189
|
},
|
|
115
|
-
"name": "typography.fontSize.
|
|
116
|
-
"path": ["typography", "fontSize", "
|
|
190
|
+
"name": "typography.fontSize.FontSize20",
|
|
191
|
+
"path": ["typography", "fontSize", "FontSize20"]
|
|
117
192
|
}, {
|
|
118
193
|
"value": "24px",
|
|
119
194
|
"attributes": {
|
|
@@ -127,8 +202,98 @@ var tokens = [{
|
|
|
127
202
|
"group": "typography"
|
|
128
203
|
}
|
|
129
204
|
},
|
|
130
|
-
"name": "typography.fontSize.
|
|
131
|
-
"path": ["typography", "fontSize", "
|
|
205
|
+
"name": "typography.fontSize.FontSize24",
|
|
206
|
+
"path": ["typography", "fontSize", "FontSize24"]
|
|
207
|
+
}, {
|
|
208
|
+
"value": "28px",
|
|
209
|
+
"attributes": {
|
|
210
|
+
"group": "typography"
|
|
211
|
+
},
|
|
212
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
213
|
+
"isSource": true,
|
|
214
|
+
"original": {
|
|
215
|
+
"value": 28,
|
|
216
|
+
"attributes": {
|
|
217
|
+
"group": "typography"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"name": "typography.fontSize.FontSize28",
|
|
221
|
+
"path": ["typography", "fontSize", "FontSize28"]
|
|
222
|
+
}, {
|
|
223
|
+
"value": "32px",
|
|
224
|
+
"attributes": {
|
|
225
|
+
"group": "typography"
|
|
226
|
+
},
|
|
227
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
228
|
+
"isSource": true,
|
|
229
|
+
"original": {
|
|
230
|
+
"value": 32,
|
|
231
|
+
"attributes": {
|
|
232
|
+
"group": "typography"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"name": "typography.fontSize.FontSize32",
|
|
236
|
+
"path": ["typography", "fontSize", "FontSize32"]
|
|
237
|
+
}, {
|
|
238
|
+
"value": "36px",
|
|
239
|
+
"attributes": {
|
|
240
|
+
"group": "typography"
|
|
241
|
+
},
|
|
242
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
243
|
+
"isSource": true,
|
|
244
|
+
"original": {
|
|
245
|
+
"value": 36,
|
|
246
|
+
"attributes": {
|
|
247
|
+
"group": "typography"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"name": "typography.fontSize.FontSize36",
|
|
251
|
+
"path": ["typography", "fontSize", "FontSize36"]
|
|
252
|
+
}, {
|
|
253
|
+
"value": "48px",
|
|
254
|
+
"attributes": {
|
|
255
|
+
"group": "typography"
|
|
256
|
+
},
|
|
257
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
258
|
+
"isSource": true,
|
|
259
|
+
"original": {
|
|
260
|
+
"value": 48,
|
|
261
|
+
"attributes": {
|
|
262
|
+
"group": "typography"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"name": "typography.fontSize.FontSize48",
|
|
266
|
+
"path": ["typography", "fontSize", "FontSize48"]
|
|
267
|
+
}, {
|
|
268
|
+
"value": "0.875em",
|
|
269
|
+
"attributes": {
|
|
270
|
+
"group": "typography"
|
|
271
|
+
},
|
|
272
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
273
|
+
"isSource": true,
|
|
274
|
+
"original": {
|
|
275
|
+
"value": "0.875em",
|
|
276
|
+
"attributes": {
|
|
277
|
+
"group": "typography"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"name": "typography.fontSize.FontSizeCode",
|
|
281
|
+
"path": ["typography", "fontSize", "FontSizeCode"]
|
|
282
|
+
}, {
|
|
283
|
+
"value": "11px",
|
|
284
|
+
"attributes": {
|
|
285
|
+
"group": "typography"
|
|
286
|
+
},
|
|
287
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
288
|
+
"isSource": true,
|
|
289
|
+
"original": {
|
|
290
|
+
"value": 11,
|
|
291
|
+
"attributes": {
|
|
292
|
+
"group": "typography"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"name": "typography.fontSize.LegacyFontSize11",
|
|
296
|
+
"path": ["typography", "fontSize", "LegacyFontSize11"]
|
|
132
297
|
}, {
|
|
133
298
|
"value": "29px",
|
|
134
299
|
"attributes": {
|
|
@@ -142,8 +307,8 @@ var tokens = [{
|
|
|
142
307
|
"group": "typography"
|
|
143
308
|
}
|
|
144
309
|
},
|
|
145
|
-
"name": "typography.fontSize.
|
|
146
|
-
"path": ["typography", "fontSize", "
|
|
310
|
+
"name": "typography.fontSize.LegacyFontSize29",
|
|
311
|
+
"path": ["typography", "fontSize", "LegacyFontSize29"]
|
|
147
312
|
}, {
|
|
148
313
|
"value": "35px",
|
|
149
314
|
"attributes": {
|
|
@@ -157,23 +322,23 @@ var tokens = [{
|
|
|
157
322
|
"group": "typography"
|
|
158
323
|
}
|
|
159
324
|
},
|
|
160
|
-
"name": "typography.fontSize.
|
|
161
|
-
"path": ["typography", "fontSize", "
|
|
325
|
+
"name": "typography.fontSize.LegacyFontSize35",
|
|
326
|
+
"path": ["typography", "fontSize", "LegacyFontSize35"]
|
|
162
327
|
}, {
|
|
163
|
-
"value": "
|
|
328
|
+
"value": "400",
|
|
164
329
|
"attributes": {
|
|
165
330
|
"group": "typography"
|
|
166
331
|
},
|
|
167
332
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
168
333
|
"isSource": true,
|
|
169
334
|
"original": {
|
|
170
|
-
"value": "
|
|
335
|
+
"value": "400",
|
|
171
336
|
"attributes": {
|
|
172
337
|
"group": "typography"
|
|
173
338
|
}
|
|
174
339
|
},
|
|
175
|
-
"name": "typography.fontWeight.
|
|
176
|
-
"path": ["typography", "fontWeight", "
|
|
340
|
+
"name": "typography.fontWeight.FontWeight400",
|
|
341
|
+
"path": ["typography", "fontWeight", "FontWeight400"]
|
|
177
342
|
}, {
|
|
178
343
|
"value": "500",
|
|
179
344
|
"attributes": {
|
|
@@ -187,38 +352,128 @@ var tokens = [{
|
|
|
187
352
|
"group": "typography"
|
|
188
353
|
}
|
|
189
354
|
},
|
|
190
|
-
"name": "typography.fontWeight.
|
|
191
|
-
"path": ["typography", "fontWeight", "
|
|
355
|
+
"name": "typography.fontWeight.FontWeight500",
|
|
356
|
+
"path": ["typography", "fontWeight", "FontWeight500"]
|
|
192
357
|
}, {
|
|
193
|
-
"value": "
|
|
358
|
+
"value": "600",
|
|
194
359
|
"attributes": {
|
|
195
360
|
"group": "typography"
|
|
196
361
|
},
|
|
197
362
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
198
363
|
"isSource": true,
|
|
199
364
|
"original": {
|
|
200
|
-
"value": "
|
|
365
|
+
"value": "600",
|
|
201
366
|
"attributes": {
|
|
202
367
|
"group": "typography"
|
|
203
368
|
}
|
|
204
369
|
},
|
|
205
|
-
"name": "typography.fontWeight.
|
|
206
|
-
"path": ["typography", "fontWeight", "
|
|
370
|
+
"name": "typography.fontWeight.FontWeight600",
|
|
371
|
+
"path": ["typography", "fontWeight", "FontWeight600"]
|
|
207
372
|
}, {
|
|
208
|
-
"value": "
|
|
373
|
+
"value": "700",
|
|
209
374
|
"attributes": {
|
|
210
375
|
"group": "typography"
|
|
211
376
|
},
|
|
212
377
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
213
378
|
"isSource": true,
|
|
214
379
|
"original": {
|
|
215
|
-
"value": "
|
|
380
|
+
"value": "700",
|
|
381
|
+
"attributes": {
|
|
382
|
+
"group": "typography"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"name": "typography.fontWeight.FontWeight700",
|
|
386
|
+
"path": ["typography", "fontWeight", "FontWeight700"]
|
|
387
|
+
}, {
|
|
388
|
+
"value": "0",
|
|
389
|
+
"attributes": {
|
|
390
|
+
"group": "typography"
|
|
391
|
+
},
|
|
392
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
393
|
+
"isSource": true,
|
|
394
|
+
"original": {
|
|
395
|
+
"value": "0",
|
|
216
396
|
"attributes": {
|
|
217
397
|
"group": "typography"
|
|
218
398
|
}
|
|
219
399
|
},
|
|
220
|
-
"name": "typography.
|
|
221
|
-
"path": ["typography", "
|
|
400
|
+
"name": "typography.letterSpacing.LetterSpacing0",
|
|
401
|
+
"path": ["typography", "letterSpacing", "LetterSpacing0"]
|
|
402
|
+
}, {
|
|
403
|
+
"value": "-0.003em",
|
|
404
|
+
"attributes": {
|
|
405
|
+
"group": "typography"
|
|
406
|
+
},
|
|
407
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
408
|
+
"isSource": true,
|
|
409
|
+
"original": {
|
|
410
|
+
"value": "-0.003em",
|
|
411
|
+
"attributes": {
|
|
412
|
+
"group": "typography"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"name": "typography.letterSpacing.LetterSpacing100",
|
|
416
|
+
"path": ["typography", "letterSpacing", "LetterSpacing100"]
|
|
417
|
+
}, {
|
|
418
|
+
"value": "-0.006em",
|
|
419
|
+
"attributes": {
|
|
420
|
+
"group": "typography"
|
|
421
|
+
},
|
|
422
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
423
|
+
"isSource": true,
|
|
424
|
+
"original": {
|
|
425
|
+
"value": "-0.006em",
|
|
426
|
+
"attributes": {
|
|
427
|
+
"group": "typography"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"name": "typography.letterSpacing.LetterSpacing200",
|
|
431
|
+
"path": ["typography", "letterSpacing", "LetterSpacing200"]
|
|
432
|
+
}, {
|
|
433
|
+
"value": "-0.008em",
|
|
434
|
+
"attributes": {
|
|
435
|
+
"group": "typography"
|
|
436
|
+
},
|
|
437
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
438
|
+
"isSource": true,
|
|
439
|
+
"original": {
|
|
440
|
+
"value": "-0.008em",
|
|
441
|
+
"attributes": {
|
|
442
|
+
"group": "typography"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"name": "typography.letterSpacing.LetterSpacing300",
|
|
446
|
+
"path": ["typography", "letterSpacing", "LetterSpacing300"]
|
|
447
|
+
}, {
|
|
448
|
+
"value": "-0.01em",
|
|
449
|
+
"attributes": {
|
|
450
|
+
"group": "typography"
|
|
451
|
+
},
|
|
452
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
453
|
+
"isSource": true,
|
|
454
|
+
"original": {
|
|
455
|
+
"value": "-0.01em",
|
|
456
|
+
"attributes": {
|
|
457
|
+
"group": "typography"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"name": "typography.letterSpacing.LetterSpacing400",
|
|
461
|
+
"path": ["typography", "letterSpacing", "LetterSpacing400"]
|
|
462
|
+
}, {
|
|
463
|
+
"value": "1",
|
|
464
|
+
"attributes": {
|
|
465
|
+
"group": "typography"
|
|
466
|
+
},
|
|
467
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
468
|
+
"isSource": true,
|
|
469
|
+
"original": {
|
|
470
|
+
"value": "1",
|
|
471
|
+
"attributes": {
|
|
472
|
+
"group": "typography"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"name": "typography.lineHeight.LineHeight1",
|
|
476
|
+
"path": ["typography", "lineHeight", "LineHeight1"]
|
|
222
477
|
}, {
|
|
223
478
|
"value": "16px",
|
|
224
479
|
"attributes": {
|
|
@@ -295,20 +550,35 @@ var tokens = [{
|
|
|
295
550
|
"name": "typography.lineHeight.LineHeight500",
|
|
296
551
|
"path": ["typography", "lineHeight", "LineHeight500"]
|
|
297
552
|
}, {
|
|
298
|
-
"value": "
|
|
553
|
+
"value": "36px",
|
|
299
554
|
"attributes": {
|
|
300
555
|
"group": "typography"
|
|
301
556
|
},
|
|
302
557
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
303
558
|
"isSource": true,
|
|
304
559
|
"original": {
|
|
305
|
-
"value":
|
|
560
|
+
"value": 36,
|
|
306
561
|
"attributes": {
|
|
307
562
|
"group": "typography"
|
|
308
563
|
}
|
|
309
564
|
},
|
|
310
565
|
"name": "typography.lineHeight.LineHeight600",
|
|
311
566
|
"path": ["typography", "lineHeight", "LineHeight600"]
|
|
567
|
+
}, {
|
|
568
|
+
"value": "40px",
|
|
569
|
+
"attributes": {
|
|
570
|
+
"group": "typography"
|
|
571
|
+
},
|
|
572
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
573
|
+
"isSource": true,
|
|
574
|
+
"original": {
|
|
575
|
+
"value": 40,
|
|
576
|
+
"attributes": {
|
|
577
|
+
"group": "typography"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"name": "typography.lineHeight.LineHeight700",
|
|
581
|
+
"path": ["typography", "lineHeight", "LineHeight700"]
|
|
312
582
|
}];
|
|
313
583
|
var _default = tokens;
|
|
314
584
|
exports.default = _default;
|
|
@@ -16,7 +16,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
16
16
|
* This allows users to compose their themes and only use the tokens that are requested.
|
|
17
17
|
* When a new theme is created, the import should automatically be added to the map
|
|
18
18
|
*
|
|
19
|
-
* @codegen <<SignedSource::
|
|
19
|
+
* @codegen <<SignedSource::1e1c80a5700235c55449aa23948418be>>
|
|
20
20
|
* @codegenCommand yarn build tokens
|
|
21
21
|
*/
|
|
22
22
|
|
|
@@ -51,10 +51,10 @@ var themeImportsMap = {
|
|
|
51
51
|
'./themes/atlassian-spacing'));
|
|
52
52
|
});
|
|
53
53
|
},
|
|
54
|
-
'typography': function
|
|
54
|
+
'typography-adg3': function typographyAdg3() {
|
|
55
55
|
return Promise.resolve().then(function () {
|
|
56
|
-
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography" */
|
|
57
|
-
'./themes/atlassian-typography'));
|
|
56
|
+
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography-adg3" */
|
|
57
|
+
'./themes/atlassian-typography-adg3'));
|
|
58
58
|
});
|
|
59
59
|
},
|
|
60
60
|
'shape': function shape() {
|
|
@@ -74,6 +74,18 @@ var themeImportsMap = {
|
|
|
74
74
|
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-dark-new-input-border" */
|
|
75
75
|
'./themes/atlassian-dark-new-input-border'));
|
|
76
76
|
});
|
|
77
|
+
},
|
|
78
|
+
'typography': function typography() {
|
|
79
|
+
return Promise.resolve().then(function () {
|
|
80
|
+
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography" */
|
|
81
|
+
'./themes/atlassian-typography'));
|
|
82
|
+
});
|
|
83
|
+
},
|
|
84
|
+
'typography-minor3': function typographyMinor3() {
|
|
85
|
+
return Promise.resolve().then(function () {
|
|
86
|
+
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography-minor3" */
|
|
87
|
+
'./themes/atlassian-typography-minor3'));
|
|
88
|
+
});
|
|
77
89
|
}
|
|
78
90
|
};
|
|
79
91
|
var _default = themeImportsMap;
|
|
@@ -0,0 +1,13 @@
|
|
|
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::5a962c81429544e05af6d55cf34c46a0>>
|
|
10
|
+
* @codegenCommand yarn build tokens
|
|
11
|
+
*/
|
|
12
|
+
var _default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-font-body: normal 400 0.875rem/1.25rem var(--ds-font-family-product);\n --ds-font-body-sm: normal 400 0.6875rem/1.25rem var(--ds-font-family-product);\n --ds-font-code: normal 400 0.875em/1 var(--ds-font-family-monospace);\n --ds-font-heading-lg: normal 500 1.5rem/1.75rem var(--ds-font-family-product);\n --ds-font-heading-md: normal 500 1.25rem/1.5rem var(--ds-font-family-product);\n --ds-font-heading-sm: normal 600 1rem/1.25rem var(--ds-font-family-product);\n --ds-font-heading-xl: normal 600 1.8125rem/2rem var(--ds-font-family-product);\n --ds-font-heading-xs: normal 600 0.875rem/1rem var(--ds-font-family-product);\n --ds-font-heading-xxl: normal 500 2.1875rem/2.5rem var(--ds-font-family-product);\n --ds-font-heading-xxs: normal 600 0.75rem/1rem var(--ds-font-family-product);\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: -0.003em;\n --ds-font-letterSpacing-200: -0.006em;\n --ds-font-letterSpacing-300: -0.008em;\n --ds-font-letterSpacing-400: -0.01em;\n --ds-font-ui: normal 400 0.875rem/1rem var(--ds-font-family-product);\n --ds-font-ui-sm: normal 400 0.6875rem/1rem var(--ds-font-family-product);\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-product: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-sans: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n --ds-font-size-050: 0.6875rem;\n --ds-font-size-075: 0.75rem;\n --ds-font-size-100: 0.875rem;\n --ds-font-size-200: 1rem;\n --ds-font-size-300: 1.25rem;\n --ds-font-size-400: 1.5rem;\n --ds-font-size-500: 1.8125rem;\n --ds-font-size-600: 2.1875rem;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n --ds-font-lineHeight-1: 1;\n --ds-font-lineHeight-100: 1rem;\n --ds-font-lineHeight-200: 1.25rem;\n --ds-font-lineHeight-300: 1.5rem;\n --ds-font-lineHeight-400: 1.75rem;\n --ds-font-lineHeight-500: 2rem;\n --ds-font-lineHeight-600: 2.5rem;\n}\n";
|
|
13
|
+
exports.default = _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
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::88719508da65fd1b7ad398cc0681c4c5>>
|
|
10
|
+
* @codegenCommand yarn build tokens
|
|
11
|
+
*/
|
|
12
|
+
var _default = "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-font-body: normal 400 0.875rem/1.25rem var(--ds-font-family-sans);\n --ds-font-body-sm: normal 400 0.75rem/1.25rem var(--ds-font-family-sans);\n --ds-font-code: normal 400 0.875em/1 var(--ds-font-family-monospace);\n --ds-font-heading-lg: normal 700 1.5rem/1.75rem var(--ds-font-family-sans);\n --ds-font-heading-md: normal 700 1.25rem/1.5rem var(--ds-font-family-sans);\n --ds-font-heading-sm: normal 700 1rem/1.25rem var(--ds-font-family-sans);\n --ds-font-heading-xl: normal 700 1.75rem/2rem var(--ds-font-family-sans);\n --ds-font-heading-xs: normal 700 0.875rem/1rem var(--ds-font-family-sans);\n --ds-font-heading-xxl: normal 700 2rem/2.25rem var(--ds-font-family-sans);\n --ds-font-heading-xxs: normal 700 0.75rem/1rem var(--ds-font-family-sans);\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-ui: normal 400 0.875rem/1 var(--ds-font-family-sans);\n --ds-font-ui-sm: normal 400 0.75rem/1 var(--ds-font-family-sans);\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-product: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n}\n";
|
|
13
|
+
exports.default = _default;
|
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
/**
|
|
8
8
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
-
* @codegen <<SignedSource::
|
|
9
|
+
* @codegen <<SignedSource::ce2e1e115aa9ff0027981ef8ba658c64>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
|
-
var _default = "\nhtml[data-theme~=\"typography:typography\"] {\n --ds-font-
|
|
12
|
+
var _default = "\nhtml[data-theme~=\"typography:typography\"] {\n --ds-font-body: normal 400 0.875rem/1.25rem var(--ds-font-family-sans);\n --ds-font-body-sm: normal 400 0.75rem/1.25rem var(--ds-font-family-sans);\n --ds-font-code: normal 400 0.875em/1 var(--ds-font-family-monospace);\n --ds-font-heading-lg: normal 700 1.5rem/1.75rem var(--ds-font-family-sans);\n --ds-font-heading-md: normal 700 1.25rem/1.5rem var(--ds-font-family-sans);\n --ds-font-heading-sm: normal 700 1rem/1.25rem var(--ds-font-family-sans);\n --ds-font-heading-xl: normal 700 1.75rem/2rem var(--ds-font-family-sans);\n --ds-font-heading-xs: normal 700 0.875rem/1rem var(--ds-font-family-sans);\n --ds-font-heading-xxl: normal 700 2.25rem/2.5rem var(--ds-font-family-sans);\n --ds-font-heading-xxs: normal 700 0.75rem/1rem var(--ds-font-family-sans);\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-ui: normal 400 0.875rem/1 var(--ds-font-family-sans);\n --ds-font-ui-sm: normal 400 0.75rem/1 var(--ds-font-family-sans);\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-product: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n}\n";
|
|
13
13
|
exports.default = _default;
|