@digdir/designsystemet 0.1.0-next.31 → 0.100.51-next.52
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/README.md +16 -0
- package/dist/bin/config.d.ts +162 -0
- package/dist/bin/config.d.ts.map +1 -0
- package/dist/bin/config.js +56 -0
- package/dist/{types/bin → bin}/designsystemet.d.ts.map +1 -1
- package/dist/bin/designsystemet.js +159 -31
- package/dist/bin/options.d.ts +16 -0
- package/dist/bin/options.d.ts.map +1 -0
- package/dist/bin/options.js +12 -0
- package/dist/config.schema.json +81 -0
- package/dist/src/colors/colorMetadata.d.ts +53 -0
- package/dist/src/colors/colorMetadata.d.ts.map +1 -0
- package/dist/src/colors/colorMetadata.js +211 -0
- package/dist/{types/src → src}/colors/index.d.ts +1 -0
- package/dist/src/colors/index.d.ts.map +1 -0
- package/dist/src/colors/index.js +1 -0
- package/dist/src/colors/theme.d.ts +30 -0
- package/dist/src/colors/theme.d.ts.map +1 -0
- package/dist/src/colors/theme.js +52 -233
- package/dist/src/colors/types.d.ts +63 -0
- package/dist/src/colors/types.d.ts.map +1 -0
- package/dist/{types/src → src}/colors/utils.d.ts +39 -56
- package/dist/src/colors/utils.d.ts.map +1 -0
- package/dist/src/colors/utils.js +59 -187
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +2 -0
- package/dist/src/migrations/beta-to-v1.d.ts.map +1 -0
- package/dist/src/migrations/beta-to-v1.js +45 -45
- package/dist/src/migrations/codemods/css/plugins.d.ts.map +1 -0
- package/dist/src/migrations/codemods/css/plugins.js +7 -8
- package/dist/src/migrations/codemods/css/run.d.ts.map +1 -0
- package/dist/src/migrations/codemods/css/run.js +9 -1
- package/dist/src/migrations/codemods/jsx/classname-prefix.d.ts.map +1 -0
- package/dist/src/migrations/codemods/jsx/run.d.ts.map +1 -0
- package/dist/src/migrations/color-rename-next49.d.ts +3 -0
- package/dist/src/migrations/color-rename-next49.d.ts.map +1 -0
- package/dist/src/migrations/color-rename-next49.js +38 -0
- package/dist/{types/src → src}/migrations/index.d.ts +1 -0
- package/dist/src/migrations/index.d.ts.map +1 -0
- package/dist/src/migrations/index.js +3 -1
- package/dist/src/migrations/react-beta-to-v1.d.ts.map +1 -0
- package/dist/src/scripts/copy-internal-tokens.d.ts +2 -0
- package/dist/src/scripts/copy-internal-tokens.d.ts.map +1 -0
- package/dist/src/scripts/copy-internal-tokens.js +28 -0
- package/dist/src/scripts/createJsonSchema.d.ts +2 -0
- package/dist/src/scripts/createJsonSchema.d.ts.map +1 -0
- package/dist/src/scripts/createJsonSchema.js +15 -0
- package/dist/src/tokens/build/builtin-colors.css +87 -0
- package/dist/src/tokens/build/configs.d.ts +21 -0
- package/dist/src/tokens/build/configs.d.ts.map +1 -0
- package/dist/src/tokens/build/configs.js +136 -95
- package/dist/src/tokens/build/formats/css.d.ts +53 -0
- package/dist/src/tokens/build/formats/css.d.ts.map +1 -0
- package/dist/src/tokens/build/formats/css.js +140 -111
- package/dist/src/tokens/build/formats/js-tokens.d.ts.map +1 -0
- package/dist/src/tokens/build/formats/js-tokens.js +22 -9
- package/dist/src/tokens/build/transformers.d.ts +6 -0
- package/dist/src/tokens/build/transformers.d.ts.map +1 -0
- package/dist/src/tokens/build/transformers.js +27 -18
- package/dist/src/tokens/build/types.d.ts +45 -0
- package/dist/src/tokens/build/types.d.ts.map +1 -0
- package/dist/src/tokens/build/types.js +7 -0
- package/dist/{types/src → src}/tokens/build/utils/entryfile.d.ts +1 -0
- package/dist/src/tokens/build/utils/entryfile.d.ts.map +1 -0
- package/dist/src/tokens/build/utils/entryfile.js +42 -6
- package/dist/src/tokens/build/utils/getMultidimensionalThemes.d.ts +35 -0
- package/dist/src/tokens/build/utils/getMultidimensionalThemes.d.ts.map +1 -0
- package/dist/src/tokens/build/utils/getMultidimensionalThemes.js +112 -0
- package/dist/src/tokens/build.d.ts +20 -0
- package/dist/src/tokens/build.d.ts.map +1 -0
- package/dist/src/tokens/build.js +131 -0
- package/dist/src/tokens/create.d.ts +18 -0
- package/dist/src/tokens/create.d.ts.map +1 -0
- package/dist/src/tokens/create.js +99 -0
- package/dist/src/{init/template/default-files/design-tokens → tokens/design-tokens/default}/primitives/globals.json +2 -20
- package/dist/src/tokens/design-tokens/default/primitives/modes/size/global.json +96 -0
- package/dist/src/tokens/design-tokens/default/primitives/modes/size/large.json +16 -0
- package/dist/src/tokens/design-tokens/default/primitives/modes/size/medium.json +16 -0
- package/dist/src/tokens/design-tokens/default/primitives/modes/size/small.json +16 -0
- package/dist/src/tokens/design-tokens/default/primitives/modes/typography/size/large.json +96 -0
- package/dist/src/{init/template/default-files/design-tokens/primitives/size/default.json → tokens/design-tokens/default/primitives/modes/typography/size/medium.json} +9 -88
- package/dist/src/tokens/design-tokens/default/primitives/modes/typography/size/small.json +96 -0
- package/dist/src/{init/template/default-files/design-tokens → tokens/design-tokens/default}/semantic/style.json +126 -312
- package/dist/src/tokens/design-tokens/template/$metadata.json +25 -0
- package/dist/src/tokens/design-tokens/template/$themes.json +1498 -0
- package/dist/src/tokens/design-tokens/template/semantic/color-base-file.json +278 -0
- package/dist/src/tokens/design-tokens/template/semantic/modes/category-color/category-color-template.json +66 -0
- package/dist/src/tokens/design-tokens/template/semantic/semantic-color-template.json +66 -0
- package/dist/src/tokens/design-tokens/template/themes/theme-base-file.json +57 -0
- package/dist/src/tokens/design-tokens/template/themes/theme-color-template.json +66 -0
- package/dist/src/tokens/index.d.ts +3 -0
- package/dist/src/tokens/index.d.ts.map +1 -0
- package/dist/src/tokens/index.js +2 -1
- package/dist/src/tokens/template.d.ts +2 -0
- package/dist/src/tokens/template.d.ts.map +1 -0
- package/dist/src/tokens/template.js +98 -0
- package/dist/src/tokens/types.d.ts +46 -0
- package/dist/src/tokens/types.d.ts.map +1 -0
- package/dist/src/tokens/types.js +0 -0
- package/dist/src/tokens/utils.d.ts +34 -0
- package/dist/src/tokens/utils.d.ts.map +1 -0
- package/dist/src/tokens/utils.js +85 -0
- package/dist/src/tokens/write/generate$metadata.d.ts +9 -0
- package/dist/src/tokens/write/generate$metadata.d.ts.map +1 -0
- package/dist/src/tokens/write/generate$metadata.js +28 -0
- package/dist/src/tokens/write/generate$themes.d.ts +12 -0
- package/dist/src/tokens/write/generate$themes.d.ts.map +1 -0
- package/dist/src/tokens/write/generate$themes.js +161 -0
- package/dist/src/tokens/write.d.ts +12 -0
- package/dist/src/tokens/write.d.ts.map +1 -0
- package/dist/src/tokens/write.js +176 -0
- package/package.json +43 -31
- package/dist/src/init/createTokensPackage.js +0 -273
- package/dist/src/init/generateMetadataJson.js +0 -24
- package/dist/src/init/generateThemesJson.js +0 -103
- package/dist/src/init/index.js +0 -10
- package/dist/src/init/nextStepsMarkdown.js +0 -92
- package/dist/src/init/template/default-files/README.md +0 -10
- package/dist/src/init/template/default-files/design-tokens/Figma/components.json +0 -22
- package/dist/src/init/template/default-files/design-tokens/README.md +0 -3
- package/dist/src/init/template/default-files/design-tokens/semantic/color.json +0 -572
- package/dist/src/init/template/default-files/design-tokens/themes/theme.json +0 -334
- package/dist/src/init/template/prettier.config.js +0 -5
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/contrast/global.json +0 -376
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/contrast/theme-template.json +0 -314
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/dark/global.json +0 -376
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/dark/theme-template.json +0 -314
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/light/global.json +0 -376
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/light/theme-template.json +0 -314
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/typography/primary/theme-template.json +0 -30
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/typography/secondary/theme-template.json +0 -30
- package/dist/src/init/template/template-files/design-tokens/themes/theme-template.json +0 -334
- package/dist/src/init/template/template-files/package.json +0 -24
- package/dist/src/init/utils.js +0 -15
- package/dist/src/tokens/build/actions.js +0 -33
- package/dist/src/tokens/build/index.js +0 -85
- package/dist/src/tokens/build/utils/noCase.js +0 -24
- package/dist/src/tokens/build/utils/permutateThemes.js +0 -64
- package/dist/src/tokens/build/utils/utils.js +0 -25
- package/dist/src/tokens/create/README.md +0 -3
- package/dist/src/tokens/create/index.js +0 -150
- package/dist/types/src/colors/index.d.ts.map +0 -1
- package/dist/types/src/colors/theme.d.ts +0 -85
- package/dist/types/src/colors/theme.d.ts.map +0 -1
- package/dist/types/src/colors/types.d.ts +0 -17
- package/dist/types/src/colors/types.d.ts.map +0 -1
- package/dist/types/src/colors/utils.d.ts.map +0 -1
- package/dist/types/src/init/createTokensPackage.d.ts +0 -5
- package/dist/types/src/init/createTokensPackage.d.ts.map +0 -1
- package/dist/types/src/init/generateMetadataJson.d.ts +0 -6
- package/dist/types/src/init/generateMetadataJson.d.ts.map +0 -1
- package/dist/types/src/init/generateThemesJson.d.ts +0 -3
- package/dist/types/src/init/generateThemesJson.d.ts.map +0 -1
- package/dist/types/src/init/index.d.ts +0 -3
- package/dist/types/src/init/index.d.ts.map +0 -1
- package/dist/types/src/init/nextStepsMarkdown.d.ts +0 -3
- package/dist/types/src/init/nextStepsMarkdown.d.ts.map +0 -1
- package/dist/types/src/init/template/prettier.config.d.mts +0 -9
- package/dist/types/src/init/template/prettier.config.d.mts.map +0 -1
- package/dist/types/src/init/utils.d.ts +0 -4
- package/dist/types/src/init/utils.d.ts.map +0 -1
- package/dist/types/src/migrations/beta-to-v1.d.ts.map +0 -1
- package/dist/types/src/migrations/codemods/css/plugins.d.ts.map +0 -1
- package/dist/types/src/migrations/codemods/css/run.d.ts.map +0 -1
- package/dist/types/src/migrations/codemods/jsx/classname-prefix.d.ts.map +0 -1
- package/dist/types/src/migrations/codemods/jsx/run.d.ts.map +0 -1
- package/dist/types/src/migrations/index.d.ts.map +0 -1
- package/dist/types/src/migrations/react-beta-to-v1.d.ts.map +0 -1
- package/dist/types/src/tokens/build/actions.d.ts +0 -6
- package/dist/types/src/tokens/build/actions.d.ts.map +0 -1
- package/dist/types/src/tokens/build/configs.d.ts +0 -31
- package/dist/types/src/tokens/build/configs.d.ts.map +0 -1
- package/dist/types/src/tokens/build/formats/css.d.ts +0 -5
- package/dist/types/src/tokens/build/formats/css.d.ts.map +0 -1
- package/dist/types/src/tokens/build/formats/js-tokens.d.ts.map +0 -1
- package/dist/types/src/tokens/build/index.d.ts +0 -11
- package/dist/types/src/tokens/build/index.d.ts.map +0 -1
- package/dist/types/src/tokens/build/transformers.d.ts +0 -5
- package/dist/types/src/tokens/build/transformers.d.ts.map +0 -1
- package/dist/types/src/tokens/build/utils/entryfile.d.ts.map +0 -1
- package/dist/types/src/tokens/build/utils/noCase.d.ts +0 -11
- package/dist/types/src/tokens/build/utils/noCase.d.ts.map +0 -1
- package/dist/types/src/tokens/build/utils/permutateThemes.d.ts +0 -17
- package/dist/types/src/tokens/build/utils/permutateThemes.d.ts.map +0 -1
- package/dist/types/src/tokens/build/utils/utils.d.ts +0 -25
- package/dist/types/src/tokens/build/utils/utils.d.ts.map +0 -1
- package/dist/types/src/tokens/create/index.d.ts +0 -64
- package/dist/types/src/tokens/create/index.d.ts.map +0 -1
- package/dist/types/src/tokens/index.d.ts +0 -2
- package/dist/types/src/tokens/index.d.ts.map +0 -1
- /package/dist/{types/bin → bin}/designsystemet.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/beta-to-v1.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/codemods/css/plugins.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/codemods/css/run.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/codemods/jsx/classname-prefix.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/codemods/jsx/run.d.ts +0 -0
- /package/dist/{types/src → src}/migrations/react-beta-to-v1.d.ts +0 -0
- /package/dist/{types/src → src}/tokens/build/formats/js-tokens.d.ts +0 -0
|
@@ -1,314 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"<theme>": {
|
|
3
|
-
"accent": {
|
|
4
|
-
"1": {
|
|
5
|
-
"$type": "color",
|
|
6
|
-
"$value": "#fefeff"
|
|
7
|
-
},
|
|
8
|
-
"2": {
|
|
9
|
-
"$type": "color",
|
|
10
|
-
"$value": "#eef4fa"
|
|
11
|
-
},
|
|
12
|
-
"3": {
|
|
13
|
-
"$type": "color",
|
|
14
|
-
"$value": "#d1e3f3"
|
|
15
|
-
},
|
|
16
|
-
"4": {
|
|
17
|
-
"$type": "color",
|
|
18
|
-
"$value": "#bad5ec"
|
|
19
|
-
},
|
|
20
|
-
"5": {
|
|
21
|
-
"$type": "color",
|
|
22
|
-
"$value": "#a1c5e5"
|
|
23
|
-
},
|
|
24
|
-
"6": {
|
|
25
|
-
"$type": "color",
|
|
26
|
-
"$value": "#97bfe3"
|
|
27
|
-
},
|
|
28
|
-
"7": {
|
|
29
|
-
"$type": "color",
|
|
30
|
-
"$value": "#3885c9"
|
|
31
|
-
},
|
|
32
|
-
"8": {
|
|
33
|
-
"$type": "color",
|
|
34
|
-
"$value": "#014e93"
|
|
35
|
-
},
|
|
36
|
-
"9": {
|
|
37
|
-
"$type": "color",
|
|
38
|
-
"$value": "#0163ba"
|
|
39
|
-
},
|
|
40
|
-
"10": {
|
|
41
|
-
"$type": "color",
|
|
42
|
-
"$value": "#015097"
|
|
43
|
-
},
|
|
44
|
-
"11": {
|
|
45
|
-
"$type": "color",
|
|
46
|
-
"$value": "#013f75"
|
|
47
|
-
},
|
|
48
|
-
"12": {
|
|
49
|
-
"$type": "color",
|
|
50
|
-
"$value": "#0163ba"
|
|
51
|
-
},
|
|
52
|
-
"13": {
|
|
53
|
-
"$type": "color",
|
|
54
|
-
"$value": "#002d54"
|
|
55
|
-
},
|
|
56
|
-
"contrast-1": {
|
|
57
|
-
"$type": "color",
|
|
58
|
-
"$value": "#ffffff"
|
|
59
|
-
},
|
|
60
|
-
"contrast-2": {
|
|
61
|
-
"$type": "color",
|
|
62
|
-
"$value": "#dbe9f5"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"neutral": {
|
|
66
|
-
"1": {
|
|
67
|
-
"$type": "color",
|
|
68
|
-
"$value": "#fefefe"
|
|
69
|
-
},
|
|
70
|
-
"2": {
|
|
71
|
-
"$type": "color",
|
|
72
|
-
"$value": "#f3f4f5"
|
|
73
|
-
},
|
|
74
|
-
"3": {
|
|
75
|
-
"$type": "color",
|
|
76
|
-
"$value": "#e1e3e5"
|
|
77
|
-
},
|
|
78
|
-
"4": {
|
|
79
|
-
"$type": "color",
|
|
80
|
-
"$value": "#ced1d4"
|
|
81
|
-
},
|
|
82
|
-
"5": {
|
|
83
|
-
"$type": "color",
|
|
84
|
-
"$value": "#bdc1c6"
|
|
85
|
-
},
|
|
86
|
-
"6": {
|
|
87
|
-
"$type": "color",
|
|
88
|
-
"$value": "#b8bcc1"
|
|
89
|
-
},
|
|
90
|
-
"7": {
|
|
91
|
-
"$type": "color",
|
|
92
|
-
"$value": "#7a818c"
|
|
93
|
-
},
|
|
94
|
-
"8": {
|
|
95
|
-
"$type": "color",
|
|
96
|
-
"$value": "#444e5d"
|
|
97
|
-
},
|
|
98
|
-
"9": {
|
|
99
|
-
"$type": "color",
|
|
100
|
-
"$value": "#1e2b3c"
|
|
101
|
-
},
|
|
102
|
-
"10": {
|
|
103
|
-
"$type": "color",
|
|
104
|
-
"$value": "#303c4b"
|
|
105
|
-
},
|
|
106
|
-
"11": {
|
|
107
|
-
"$type": "color",
|
|
108
|
-
"$value": "#444e5d"
|
|
109
|
-
},
|
|
110
|
-
"12": {
|
|
111
|
-
"$type": "color",
|
|
112
|
-
"$value": "#5b6471"
|
|
113
|
-
},
|
|
114
|
-
"13": {
|
|
115
|
-
"$type": "color",
|
|
116
|
-
"$value": "#202c3d"
|
|
117
|
-
},
|
|
118
|
-
"contrast-1": {
|
|
119
|
-
"$type": "color",
|
|
120
|
-
"$value": "#ffffff"
|
|
121
|
-
},
|
|
122
|
-
"contrast-2": {
|
|
123
|
-
"$type": "color",
|
|
124
|
-
"$value": "#bbbfc4"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"brand1": {
|
|
128
|
-
"1": {
|
|
129
|
-
"$type": "color",
|
|
130
|
-
"$value": "#fffefe"
|
|
131
|
-
},
|
|
132
|
-
"2": {
|
|
133
|
-
"$type": "color",
|
|
134
|
-
"$value": "#fef0f1"
|
|
135
|
-
},
|
|
136
|
-
"3": {
|
|
137
|
-
"$type": "color",
|
|
138
|
-
"$value": "#fcdbdc"
|
|
139
|
-
},
|
|
140
|
-
"4": {
|
|
141
|
-
"$type": "color",
|
|
142
|
-
"$value": "#fbc4c5"
|
|
143
|
-
},
|
|
144
|
-
"5": {
|
|
145
|
-
"$type": "color",
|
|
146
|
-
"$value": "#f9acae"
|
|
147
|
-
},
|
|
148
|
-
"6": {
|
|
149
|
-
"$type": "color",
|
|
150
|
-
"$value": "#f8a5a7"
|
|
151
|
-
},
|
|
152
|
-
"7": {
|
|
153
|
-
"$type": "color",
|
|
154
|
-
"$value": "#d95558"
|
|
155
|
-
},
|
|
156
|
-
"8": {
|
|
157
|
-
"$type": "color",
|
|
158
|
-
"$value": "#833336"
|
|
159
|
-
},
|
|
160
|
-
"9": {
|
|
161
|
-
"$type": "color",
|
|
162
|
-
"$value": "#f35f63"
|
|
163
|
-
},
|
|
164
|
-
"10": {
|
|
165
|
-
"$type": "color",
|
|
166
|
-
"$value": "#d05255"
|
|
167
|
-
},
|
|
168
|
-
"11": {
|
|
169
|
-
"$type": "color",
|
|
170
|
-
"$value": "#af4547"
|
|
171
|
-
},
|
|
172
|
-
"12": {
|
|
173
|
-
"$type": "color",
|
|
174
|
-
"$value": "#a74144"
|
|
175
|
-
},
|
|
176
|
-
"13": {
|
|
177
|
-
"$type": "color",
|
|
178
|
-
"$value": "#4b1e1f"
|
|
179
|
-
},
|
|
180
|
-
"contrast-1": {
|
|
181
|
-
"$type": "color",
|
|
182
|
-
"$value": "#000000"
|
|
183
|
-
},
|
|
184
|
-
"contrast-2": {
|
|
185
|
-
"$type": "color",
|
|
186
|
-
"$value": "#000000"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"brand2": {
|
|
190
|
-
"1": {
|
|
191
|
-
"$type": "color",
|
|
192
|
-
"$value": "#fffefc"
|
|
193
|
-
},
|
|
194
|
-
"2": {
|
|
195
|
-
"$type": "color",
|
|
196
|
-
"$value": "#fbf3e0"
|
|
197
|
-
},
|
|
198
|
-
"3": {
|
|
199
|
-
"$type": "color",
|
|
200
|
-
"$value": "#f5dfad"
|
|
201
|
-
},
|
|
202
|
-
"4": {
|
|
203
|
-
"$type": "color",
|
|
204
|
-
"$value": "#f0ce7f"
|
|
205
|
-
},
|
|
206
|
-
"5": {
|
|
207
|
-
"$type": "color",
|
|
208
|
-
"$value": "#e9ba4c"
|
|
209
|
-
},
|
|
210
|
-
"6": {
|
|
211
|
-
"$type": "color",
|
|
212
|
-
"$value": "#e7b43d"
|
|
213
|
-
},
|
|
214
|
-
"7": {
|
|
215
|
-
"$type": "color",
|
|
216
|
-
"$value": "#a57a17"
|
|
217
|
-
},
|
|
218
|
-
"8": {
|
|
219
|
-
"$type": "color",
|
|
220
|
-
"$value": "#63490e"
|
|
221
|
-
},
|
|
222
|
-
"9": {
|
|
223
|
-
"$type": "color",
|
|
224
|
-
"$value": "#e4a920"
|
|
225
|
-
},
|
|
226
|
-
"10": {
|
|
227
|
-
"$type": "color",
|
|
228
|
-
"$value": "#c9951c"
|
|
229
|
-
},
|
|
230
|
-
"11": {
|
|
231
|
-
"$type": "color",
|
|
232
|
-
"$value": "#af8119"
|
|
233
|
-
},
|
|
234
|
-
"12": {
|
|
235
|
-
"$type": "color",
|
|
236
|
-
"$value": "#7e5d12"
|
|
237
|
-
},
|
|
238
|
-
"13": {
|
|
239
|
-
"$type": "color",
|
|
240
|
-
"$value": "#382a08"
|
|
241
|
-
},
|
|
242
|
-
"contrast-1": {
|
|
243
|
-
"$type": "color",
|
|
244
|
-
"$value": "#000000"
|
|
245
|
-
},
|
|
246
|
-
"contrast-2": {
|
|
247
|
-
"$type": "color",
|
|
248
|
-
"$value": "#2b2006"
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
"brand3": {
|
|
252
|
-
"1": {
|
|
253
|
-
"$type": "color",
|
|
254
|
-
"$value": "#fdfeff"
|
|
255
|
-
},
|
|
256
|
-
"2": {
|
|
257
|
-
"$type": "color",
|
|
258
|
-
"$value": "#eaf6fe"
|
|
259
|
-
},
|
|
260
|
-
"3": {
|
|
261
|
-
"$type": "color",
|
|
262
|
-
"$value": "#c8e6fd"
|
|
263
|
-
},
|
|
264
|
-
"4": {
|
|
265
|
-
"$type": "color",
|
|
266
|
-
"$value": "#a9d7fb"
|
|
267
|
-
},
|
|
268
|
-
"5": {
|
|
269
|
-
"$type": "color",
|
|
270
|
-
"$value": "#84c7fa"
|
|
271
|
-
},
|
|
272
|
-
"6": {
|
|
273
|
-
"$type": "color",
|
|
274
|
-
"$value": "#7ac2f9"
|
|
275
|
-
},
|
|
276
|
-
"7": {
|
|
277
|
-
"$type": "color",
|
|
278
|
-
"$value": "#1a85d6"
|
|
279
|
-
},
|
|
280
|
-
"8": {
|
|
281
|
-
"$type": "color",
|
|
282
|
-
"$value": "#105082"
|
|
283
|
-
},
|
|
284
|
-
"9": {
|
|
285
|
-
"$type": "color",
|
|
286
|
-
"$value": "#1e98f5"
|
|
287
|
-
},
|
|
288
|
-
"10": {
|
|
289
|
-
"$type": "color",
|
|
290
|
-
"$value": "#1a83d3"
|
|
291
|
-
},
|
|
292
|
-
"11": {
|
|
293
|
-
"$type": "color",
|
|
294
|
-
"$value": "#166eb2"
|
|
295
|
-
},
|
|
296
|
-
"12": {
|
|
297
|
-
"$type": "color",
|
|
298
|
-
"$value": "#1466a5"
|
|
299
|
-
},
|
|
300
|
-
"13": {
|
|
301
|
-
"$type": "color",
|
|
302
|
-
"$value": "#092e4b"
|
|
303
|
-
},
|
|
304
|
-
"contrast-1": {
|
|
305
|
-
"$type": "color",
|
|
306
|
-
"$value": "#000000"
|
|
307
|
-
},
|
|
308
|
-
"contrast-2": {
|
|
309
|
-
"$type": "color",
|
|
310
|
-
"$value": "#010407"
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
}
|
|
314
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"<theme>": {
|
|
3
|
-
"main": {
|
|
4
|
-
"$type": "fontFamilies",
|
|
5
|
-
"$value": "Inter"
|
|
6
|
-
},
|
|
7
|
-
"bold": {
|
|
8
|
-
"$extensions": {
|
|
9
|
-
"studio.tokens": {
|
|
10
|
-
"modify": {}
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"$type": "fontWeights",
|
|
14
|
-
"$value": "Medium"
|
|
15
|
-
},
|
|
16
|
-
"extra-bold": {
|
|
17
|
-
"$extensions": {
|
|
18
|
-
"studio.tokens": {
|
|
19
|
-
"modify": {}
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"$type": "fontWeights",
|
|
23
|
-
"$value": "Semi bold"
|
|
24
|
-
},
|
|
25
|
-
"regular": {
|
|
26
|
-
"$type": "fontWeights",
|
|
27
|
-
"$value": "Regular"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"<theme>": {
|
|
3
|
-
"main": {
|
|
4
|
-
"$type": "fontFamilies",
|
|
5
|
-
"$value": "IBM Plex Mono"
|
|
6
|
-
},
|
|
7
|
-
"bold": {
|
|
8
|
-
"$extensions": {
|
|
9
|
-
"studio.tokens": {
|
|
10
|
-
"modify": {}
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"$type": "fontWeights",
|
|
14
|
-
"$value": "Medium"
|
|
15
|
-
},
|
|
16
|
-
"extra-bold": {
|
|
17
|
-
"$extensions": {
|
|
18
|
-
"studio.tokens": {
|
|
19
|
-
"modify": {}
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"$type": "fontWeights",
|
|
23
|
-
"$value": "SemiBold"
|
|
24
|
-
},
|
|
25
|
-
"regular": {
|
|
26
|
-
"$type": "fontWeights",
|
|
27
|
-
"$value": "Regular"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
@@ -1,334 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"color": {
|
|
3
|
-
"accent": {
|
|
4
|
-
"1": {
|
|
5
|
-
"$type": "color",
|
|
6
|
-
"$value": "{<theme>.accent.1}"
|
|
7
|
-
},
|
|
8
|
-
"2": {
|
|
9
|
-
"$type": "color",
|
|
10
|
-
"$value": "{<theme>.accent.2}"
|
|
11
|
-
},
|
|
12
|
-
"3": {
|
|
13
|
-
"$type": "color",
|
|
14
|
-
"$value": "{<theme>.accent.3}"
|
|
15
|
-
},
|
|
16
|
-
"4": {
|
|
17
|
-
"$type": "color",
|
|
18
|
-
"$value": "{<theme>.accent.4}"
|
|
19
|
-
},
|
|
20
|
-
"5": {
|
|
21
|
-
"$type": "color",
|
|
22
|
-
"$value": "{<theme>.accent.5}"
|
|
23
|
-
},
|
|
24
|
-
"6": {
|
|
25
|
-
"$type": "color",
|
|
26
|
-
"$value": "{<theme>.accent.6}"
|
|
27
|
-
},
|
|
28
|
-
"7": {
|
|
29
|
-
"$type": "color",
|
|
30
|
-
"$value": "{<theme>.accent.7}"
|
|
31
|
-
},
|
|
32
|
-
"8": {
|
|
33
|
-
"$type": "color",
|
|
34
|
-
"$value": "{<theme>.accent.8}"
|
|
35
|
-
},
|
|
36
|
-
"9": {
|
|
37
|
-
"$type": "color",
|
|
38
|
-
"$value": "{<theme>.accent.9}"
|
|
39
|
-
},
|
|
40
|
-
"10": {
|
|
41
|
-
"$type": "color",
|
|
42
|
-
"$value": "{<theme>.accent.10}"
|
|
43
|
-
},
|
|
44
|
-
"11": {
|
|
45
|
-
"$type": "color",
|
|
46
|
-
"$value": "{<theme>.accent.11}"
|
|
47
|
-
},
|
|
48
|
-
"12": {
|
|
49
|
-
"$type": "color",
|
|
50
|
-
"$value": "{<theme>.accent.12}"
|
|
51
|
-
},
|
|
52
|
-
"13": {
|
|
53
|
-
"$type": "color",
|
|
54
|
-
"$value": "{<theme>.accent.13}"
|
|
55
|
-
},
|
|
56
|
-
"contrast-1": {
|
|
57
|
-
"$type": "color",
|
|
58
|
-
"$value": "{<theme>.accent.contrast-1}"
|
|
59
|
-
},
|
|
60
|
-
"contrast-2": {
|
|
61
|
-
"$type": "color",
|
|
62
|
-
"$value": "{<theme>.accent.contrast-2}"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"neutral": {
|
|
66
|
-
"1": {
|
|
67
|
-
"$type": "color",
|
|
68
|
-
"$value": "{<theme>.neutral.1}"
|
|
69
|
-
},
|
|
70
|
-
"2": {
|
|
71
|
-
"$type": "color",
|
|
72
|
-
"$value": "{<theme>.neutral.2}"
|
|
73
|
-
},
|
|
74
|
-
"3": {
|
|
75
|
-
"$type": "color",
|
|
76
|
-
"$value": "{<theme>.neutral.3}"
|
|
77
|
-
},
|
|
78
|
-
"4": {
|
|
79
|
-
"$type": "color",
|
|
80
|
-
"$value": "{<theme>.neutral.4}"
|
|
81
|
-
},
|
|
82
|
-
"5": {
|
|
83
|
-
"$type": "color",
|
|
84
|
-
"$value": "{<theme>.neutral.5}"
|
|
85
|
-
},
|
|
86
|
-
"6": {
|
|
87
|
-
"$type": "color",
|
|
88
|
-
"$value": "{<theme>.neutral.6}"
|
|
89
|
-
},
|
|
90
|
-
"7": {
|
|
91
|
-
"$type": "color",
|
|
92
|
-
"$value": "{<theme>.neutral.7}"
|
|
93
|
-
},
|
|
94
|
-
"8": {
|
|
95
|
-
"$type": "color",
|
|
96
|
-
"$value": "{<theme>.neutral.8}"
|
|
97
|
-
},
|
|
98
|
-
"9": {
|
|
99
|
-
"$type": "color",
|
|
100
|
-
"$value": "{<theme>.neutral.9}"
|
|
101
|
-
},
|
|
102
|
-
"10": {
|
|
103
|
-
"$type": "color",
|
|
104
|
-
"$value": "{<theme>.neutral.10}"
|
|
105
|
-
},
|
|
106
|
-
"11": {
|
|
107
|
-
"$type": "color",
|
|
108
|
-
"$value": "{<theme>.neutral.11}"
|
|
109
|
-
},
|
|
110
|
-
"12": {
|
|
111
|
-
"$type": "color",
|
|
112
|
-
"$value": "{<theme>.neutral.12}"
|
|
113
|
-
},
|
|
114
|
-
"13": {
|
|
115
|
-
"$type": "color",
|
|
116
|
-
"$value": "{<theme>.neutral.13}"
|
|
117
|
-
},
|
|
118
|
-
"contrast-1": {
|
|
119
|
-
"$type": "color",
|
|
120
|
-
"$value": "{<theme>.neutral.contrast-1}"
|
|
121
|
-
},
|
|
122
|
-
"contrast-2": {
|
|
123
|
-
"$type": "color",
|
|
124
|
-
"$value": "{<theme>.neutral.contrast-2}"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"brand1": {
|
|
128
|
-
"1": {
|
|
129
|
-
"$type": "color",
|
|
130
|
-
"$value": "{<theme>.brand1.1}"
|
|
131
|
-
},
|
|
132
|
-
"2": {
|
|
133
|
-
"$type": "color",
|
|
134
|
-
"$value": "{<theme>.brand1.2}"
|
|
135
|
-
},
|
|
136
|
-
"3": {
|
|
137
|
-
"$type": "color",
|
|
138
|
-
"$value": "{<theme>.brand1.3}"
|
|
139
|
-
},
|
|
140
|
-
"4": {
|
|
141
|
-
"$type": "color",
|
|
142
|
-
"$value": "{<theme>.brand1.4}"
|
|
143
|
-
},
|
|
144
|
-
"5": {
|
|
145
|
-
"$type": "color",
|
|
146
|
-
"$value": "{<theme>.brand1.5}"
|
|
147
|
-
},
|
|
148
|
-
"6": {
|
|
149
|
-
"$type": "color",
|
|
150
|
-
"$value": "{<theme>.brand1.6}"
|
|
151
|
-
},
|
|
152
|
-
"7": {
|
|
153
|
-
"$type": "color",
|
|
154
|
-
"$value": "{<theme>.brand1.7}"
|
|
155
|
-
},
|
|
156
|
-
"8": {
|
|
157
|
-
"$type": "color",
|
|
158
|
-
"$value": "{<theme>.brand1.8}"
|
|
159
|
-
},
|
|
160
|
-
"9": {
|
|
161
|
-
"$type": "color",
|
|
162
|
-
"$value": "{<theme>.brand1.9}"
|
|
163
|
-
},
|
|
164
|
-
"10": {
|
|
165
|
-
"$type": "color",
|
|
166
|
-
"$value": "{<theme>.brand1.10}"
|
|
167
|
-
},
|
|
168
|
-
"11": {
|
|
169
|
-
"$type": "color",
|
|
170
|
-
"$value": "{<theme>.brand1.11}"
|
|
171
|
-
},
|
|
172
|
-
"12": {
|
|
173
|
-
"$type": "color",
|
|
174
|
-
"$value": "{<theme>.brand1.12}"
|
|
175
|
-
},
|
|
176
|
-
"13": {
|
|
177
|
-
"$type": "color",
|
|
178
|
-
"$value": "{<theme>.brand1.13}"
|
|
179
|
-
},
|
|
180
|
-
"contrast-1": {
|
|
181
|
-
"$type": "color",
|
|
182
|
-
"$value": "{<theme>.brand1.contrast-1}"
|
|
183
|
-
},
|
|
184
|
-
"contrast-2": {
|
|
185
|
-
"$type": "color",
|
|
186
|
-
"$value": "{<theme>.brand1.contrast-2}"
|
|
187
|
-
}
|
|
188
|
-
},
|
|
189
|
-
"brand2": {
|
|
190
|
-
"1": {
|
|
191
|
-
"$type": "color",
|
|
192
|
-
"$value": "{<theme>.brand2.1}"
|
|
193
|
-
},
|
|
194
|
-
"2": {
|
|
195
|
-
"$type": "color",
|
|
196
|
-
"$value": "{<theme>.brand2.2}"
|
|
197
|
-
},
|
|
198
|
-
"3": {
|
|
199
|
-
"$type": "color",
|
|
200
|
-
"$value": "{<theme>.brand2.3}"
|
|
201
|
-
},
|
|
202
|
-
"4": {
|
|
203
|
-
"$type": "color",
|
|
204
|
-
"$value": "{<theme>.brand2.4}"
|
|
205
|
-
},
|
|
206
|
-
"5": {
|
|
207
|
-
"$type": "color",
|
|
208
|
-
"$value": "{<theme>.brand2.5}"
|
|
209
|
-
},
|
|
210
|
-
"6": {
|
|
211
|
-
"$type": "color",
|
|
212
|
-
"$value": "{<theme>.brand2.6}"
|
|
213
|
-
},
|
|
214
|
-
"7": {
|
|
215
|
-
"$type": "color",
|
|
216
|
-
"$value": "{<theme>.brand2.7}"
|
|
217
|
-
},
|
|
218
|
-
"8": {
|
|
219
|
-
"$type": "color",
|
|
220
|
-
"$value": "{<theme>.brand2.8}"
|
|
221
|
-
},
|
|
222
|
-
"9": {
|
|
223
|
-
"$type": "color",
|
|
224
|
-
"$value": "{<theme>.brand2.9}"
|
|
225
|
-
},
|
|
226
|
-
"10": {
|
|
227
|
-
"$type": "color",
|
|
228
|
-
"$value": "{<theme>.brand2.10}"
|
|
229
|
-
},
|
|
230
|
-
"11": {
|
|
231
|
-
"$type": "color",
|
|
232
|
-
"$value": "{<theme>.brand2.11}"
|
|
233
|
-
},
|
|
234
|
-
"12": {
|
|
235
|
-
"$type": "color",
|
|
236
|
-
"$value": "{<theme>.brand2.12}"
|
|
237
|
-
},
|
|
238
|
-
"13": {
|
|
239
|
-
"$type": "color",
|
|
240
|
-
"$value": "{<theme>.brand2.13}"
|
|
241
|
-
},
|
|
242
|
-
"contrast-1": {
|
|
243
|
-
"$type": "color",
|
|
244
|
-
"$value": "{<theme>.brand2.contrast-1}"
|
|
245
|
-
},
|
|
246
|
-
"contrast-2": {
|
|
247
|
-
"$type": "color",
|
|
248
|
-
"$value": "{<theme>.brand2.contrast-2}"
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
"brand3": {
|
|
252
|
-
"1": {
|
|
253
|
-
"$type": "color",
|
|
254
|
-
"$value": "{<theme>.brand3.1}"
|
|
255
|
-
},
|
|
256
|
-
"2": {
|
|
257
|
-
"$type": "color",
|
|
258
|
-
"$value": "{<theme>.brand3.2}"
|
|
259
|
-
},
|
|
260
|
-
"3": {
|
|
261
|
-
"$type": "color",
|
|
262
|
-
"$value": "{<theme>.brand3.3}"
|
|
263
|
-
},
|
|
264
|
-
"4": {
|
|
265
|
-
"$type": "color",
|
|
266
|
-
"$value": "{<theme>.brand3.4}"
|
|
267
|
-
},
|
|
268
|
-
"5": {
|
|
269
|
-
"$type": "color",
|
|
270
|
-
"$value": "{<theme>.brand3.5}"
|
|
271
|
-
},
|
|
272
|
-
"6": {
|
|
273
|
-
"$type": "color",
|
|
274
|
-
"$value": "{<theme>.brand3.6}"
|
|
275
|
-
},
|
|
276
|
-
"7": {
|
|
277
|
-
"$type": "color",
|
|
278
|
-
"$value": "{<theme>.brand3.7}"
|
|
279
|
-
},
|
|
280
|
-
"8": {
|
|
281
|
-
"$type": "color",
|
|
282
|
-
"$value": "{<theme>.brand3.8}"
|
|
283
|
-
},
|
|
284
|
-
"9": {
|
|
285
|
-
"$type": "color",
|
|
286
|
-
"$value": "{<theme>.brand3.9}"
|
|
287
|
-
},
|
|
288
|
-
"10": {
|
|
289
|
-
"$type": "color",
|
|
290
|
-
"$value": "{<theme>.brand3.10}"
|
|
291
|
-
},
|
|
292
|
-
"11": {
|
|
293
|
-
"$type": "color",
|
|
294
|
-
"$value": "{<theme>.brand3.11}"
|
|
295
|
-
},
|
|
296
|
-
"12": {
|
|
297
|
-
"$type": "color",
|
|
298
|
-
"$value": "{<theme>.brand3.12}"
|
|
299
|
-
},
|
|
300
|
-
"13": {
|
|
301
|
-
"$type": "color",
|
|
302
|
-
"$value": "{<theme>.brand3.13}"
|
|
303
|
-
},
|
|
304
|
-
"contrast-1": {
|
|
305
|
-
"$type": "color",
|
|
306
|
-
"$value": "{<theme>.brand3.contrast-1}"
|
|
307
|
-
},
|
|
308
|
-
"contrast-2": {
|
|
309
|
-
"$type": "color",
|
|
310
|
-
"$value": "{<theme>.brand3.contrast-2}"
|
|
311
|
-
}
|
|
312
|
-
}
|
|
313
|
-
},
|
|
314
|
-
"font": {
|
|
315
|
-
"family": {
|
|
316
|
-
"$type": "fontFamilies",
|
|
317
|
-
"$value": "{<theme>.main}"
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
|
-
"font-weight": {
|
|
321
|
-
"medium": {
|
|
322
|
-
"$type": "fontWeights",
|
|
323
|
-
"$value": "{<theme>.bold}"
|
|
324
|
-
},
|
|
325
|
-
"semibold": {
|
|
326
|
-
"$type": "fontWeights",
|
|
327
|
-
"$value": "{<theme>.extra-bold}"
|
|
328
|
-
},
|
|
329
|
-
"regular": {
|
|
330
|
-
"$type": "fontWeights",
|
|
331
|
-
"$value": "{<theme>.regular}"
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
}
|