unholy-design-tokens 1.0.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.
- package/.github/workflows/lint-format-build.yml +35 -0
- package/.github/workflows/publish_release.yml +18 -0
- package/.prettierrc +9 -0
- package/ANALOGY_HOUSE.md +139 -0
- package/ANALOGY_I18NEXT.md +160 -0
- package/LICENSE +201 -0
- package/README.md +90 -0
- package/WHY_THIS_EXISTS.md +74 -0
- package/bin/build-tokens.ts +34 -0
- package/build/css/bg/bg.css +60 -0
- package/build/css/border/border.css +51 -0
- package/build/css/colors.css +204 -0
- package/build/css/conditional.css +8 -0
- package/build/css/cube/cube.block.css +18 -0
- package/build/css/cube/cube.composition.css +16 -0
- package/build/css/cube/cube.utility.css +185 -0
- package/build/css/font/font.css +24 -0
- package/build/css/space.css +20 -0
- package/build/css/text/text.css +48 -0
- package/build/css/themes/private-theme.css +228 -0
- package/build/css/themes/public-theme.css +228 -0
- package/build/css/variant/variant.css +42 -0
- package/build/css/variants.css +167 -0
- package/build/types/theme.d.ts +932 -0
- package/build/types/tokens.ts +653 -0
- package/dist/bin/build-tokens.js +27 -0
- package/dist/scripts/build-style-dictionary.js +32 -0
- package/dist/scripts/generate-typography-tokens.js +125 -0
- package/dist/src/colors/color.config.js +45 -0
- package/dist/src/colors/color.filter.js +19 -0
- package/dist/src/colors/color.formatter.js +25 -0
- package/dist/src/colors/index.js +2 -0
- package/dist/src/cube-css/cube.config.js +42 -0
- package/dist/src/cube-css/cube.formatter.js +89 -0
- package/dist/src/style-dictionary.config.js +143 -0
- package/dist/src/type-declarations/type-declarations.config.js +29 -0
- package/dist/src/type-declarations/type-declarations.formatter.js +111 -0
- package/dist/src/utils/helpers.js +9 -0
- package/dist/src/utils/index.js +4 -0
- package/dist/src/utils/template.js +83 -0
- package/dist/src/utils/tokens.js +80 -0
- package/dist/src/utils/utopia.js +19 -0
- package/eslint.config.js +67 -0
- package/package.json +60 -0
- package/scripts/build-style-dictionary.ts +44 -0
- package/scripts/generate-typography-tokens.ts +138 -0
- package/src/LICENSE +201 -0
- package/src/README.md +88 -0
- package/src/colors/color.config.ts +48 -0
- package/src/colors/color.filter.ts +28 -0
- package/src/colors/color.formatter.ts +43 -0
- package/src/colors/index.ts +6 -0
- package/src/cube-css/cube.config.ts +50 -0
- package/src/cube-css/cube.formatter.ts +104 -0
- package/src/formatters/spacing.js +95 -0
- package/src/style-dictionary.config.ts +151 -0
- package/src/theme/README.md +256 -0
- package/src/theme/cube-theme-addon.js +44 -0
- package/src/theme/helper.js +38 -0
- package/src/theme/index.js +6 -0
- package/src/theme/theme.config.js +42 -0
- package/src/theme/theme.filter.js +42 -0
- package/src/theme/theme.formatter.js +71 -0
- package/src/tokens/1 - primitives/README.md +58 -0
- package/src/tokens/1 - primitives/border.json +54 -0
- package/src/tokens/1 - primitives/breakpoint.json +10 -0
- package/src/tokens/1 - primitives/color-pool.json +266 -0
- package/src/tokens/1 - primitives/color.json +266 -0
- package/src/tokens/1 - primitives/font-scale.json +27 -0
- package/src/tokens/1 - primitives/font.json +23 -0
- package/src/tokens/1 - primitives/shadow.json +26 -0
- package/src/tokens/1 - primitives/space.json +27 -0
- package/src/tokens/2 - semantic/README.md +49 -0
- package/src/tokens/2 - semantic/border.json +27 -0
- package/src/tokens/2 - semantic/color.json +263 -0
- package/src/tokens/2 - semantic/details.md +1 -0
- package/src/tokens/2 - semantic/layout.json +52 -0
- package/src/tokens/2 - semantic/radius.json +13 -0
- package/src/tokens/2 - semantic/shadow.json +19 -0
- package/src/tokens/2 - semantic/spacing.json +25 -0
- package/src/tokens/3 - intent/README.md +43 -0
- package/src/tokens/3 - intent/background.json +135 -0
- package/src/tokens/3 - intent/color.json +265 -0
- package/src/tokens/3 - intent/font.json +61 -0
- package/src/tokens/3 - intent/text +67 -0
- package/src/tokens/README.md +176 -0
- package/src/tokens/color/brand.json +316 -0
- package/src/tokens/component/theming.json +69 -0
- package/src/tokens/conditional.json +40 -0
- package/src/tokens/custom/4 - (OPTIONAL) cube css/README.md +38 -0
- package/src/tokens/custom/4 - (OPTIONAL) cube css/block.json +24 -0
- package/src/tokens/custom/4 - (OPTIONAL) cube css/composition.json +26 -0
- package/src/tokens/custom/4 - (OPTIONAL) cube css/global.json +15 -0
- package/src/tokens/custom/4 - (OPTIONAL) cube css/utility.json +224 -0
- package/src/tokens/custom/OKlch/color.json +61 -0
- package/src/tokens/custom/OKlch/state.json +107 -0
- package/src/tokens/custom/OKlch/theme-color.json +34 -0
- package/src/tokens/custom/OKlch/variant.json +67 -0
- package/src/tokens/custom/components/highlighted.json +16 -0
- package/src/tokens/state.js +29 -0
- package/src/tokens/theme-color.json +34 -0
- package/src/type-declarations/type-declarations.config.ts +34 -0
- package/src/type-declarations/type-declarations.formatter.ts +122 -0
- package/src/utils/helpers.ts +11 -0
- package/src/utils/index.ts +4 -0
- package/src/utils/template.ts +110 -0
- package/src/utils/tokens.ts +95 -0
- package/src/utils/utopia.ts +36 -0
- package/tailwind.md +720 -0
- package/tsconfig.json +19 -0
- package/turbowatch.ts +14 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Primitives Tokens
|
|
2
|
+
|
|
3
|
+
Primitives are raw values that will be then used to create a more complex system.
|
|
4
|
+
They are the foundation of the design system.
|
|
5
|
+
|
|
6
|
+
```css
|
|
7
|
+
/* They can include: */
|
|
8
|
+
|
|
9
|
+
/* colors */
|
|
10
|
+
--color-arylide-yellow-500: #e3c567;
|
|
11
|
+
--color-night-500: #0b0c0c;
|
|
12
|
+
|
|
13
|
+
/* spacing */
|
|
14
|
+
--spacing-unit: 1rem;
|
|
15
|
+
|
|
16
|
+
/* border */
|
|
17
|
+
--border-radius-lg: 8px;
|
|
18
|
+
|
|
19
|
+
/* shadows */
|
|
20
|
+
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
|
|
21
|
+
|
|
22
|
+
/* or it could be some bases for scaled values */
|
|
23
|
+
/* See https://every-layout.dev/rudiments/modular-scale/ */
|
|
24
|
+
|
|
25
|
+
/* etc. */
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Some of these categories might be defined as "foundations" in some design systems, and therefore defined only once.
|
|
29
|
+
The most common important token are **colors**. They are usually defined using a palette (100 to 900 scale)
|
|
30
|
+
|
|
31
|
+
## How primitives tokens are defined
|
|
32
|
+
|
|
33
|
+
- **Each individual value is a separate token**
|
|
34
|
+
- **Mostly raw values**
|
|
35
|
+
- **No references to other tokens**
|
|
36
|
+
- **No meaning-based names**
|
|
37
|
+
- **Minimal changes over time**
|
|
38
|
+
|
|
39
|
+
See this as a "pool" of available raw values that you can pick from later.
|
|
40
|
+
It could technically be a huge base of different colors, spacings, with no direct relation so far.
|
|
41
|
+
|
|
42
|
+
## Who owns primitives?
|
|
43
|
+
|
|
44
|
+
Usually:
|
|
45
|
+
|
|
46
|
+
- **Design**: define the palette, spacing scale, etc. → **they choose and own the raw values**
|
|
47
|
+
- **Development** → implement in code, Style Dictionary, etc. → **they only consume these raw values**
|
|
48
|
+
|
|
49
|
+
## Generate color palette
|
|
50
|
+
|
|
51
|
+
- Figma plugin: [Color Palette Generator](https://www.figma.com/color-palette-generator/) to create scales from a base color.
|
|
52
|
+
- [Coolors](https://coolors.co/): can generate color palettes and shades in different formats.
|
|
53
|
+
|
|
54
|
+
🎨 [Picular](https://www.picular.co/) → type any word and get a related color
|
|
55
|
+
|
|
56
|
+
## Next Steps
|
|
57
|
+
|
|
58
|
+
From here, you can create [**semantic tokens**](../2%20-%20semantic/README.md) that will give meaning to these raw values.
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"border": {
|
|
3
|
+
"width": {
|
|
4
|
+
"base": {
|
|
5
|
+
"value": "2px"
|
|
6
|
+
},
|
|
7
|
+
"scale": {
|
|
8
|
+
"value": "1.25"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"style": {
|
|
12
|
+
"solid": {
|
|
13
|
+
"value": "solid"
|
|
14
|
+
},
|
|
15
|
+
"dashed": {
|
|
16
|
+
"value": "dashed"
|
|
17
|
+
},
|
|
18
|
+
"dotted": {
|
|
19
|
+
"value": "dotted"
|
|
20
|
+
},
|
|
21
|
+
"double": {
|
|
22
|
+
"value": "double"
|
|
23
|
+
},
|
|
24
|
+
"none": {
|
|
25
|
+
"value": "none"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"radius": {
|
|
29
|
+
"base": {
|
|
30
|
+
"value": 0
|
|
31
|
+
},
|
|
32
|
+
// Inside Primitives, there could be any raw value as needed to build tokens.
|
|
33
|
+
// If you decide one day to change your branding, updating these values shouldn't bu a high priority.
|
|
34
|
+
// See Primitives as nothing more than a "pool" of eventual variable that you eventually will use to build your design system.
|
|
35
|
+
"0.5": {
|
|
36
|
+
"value": "0.5px"
|
|
37
|
+
},
|
|
38
|
+
"1": {
|
|
39
|
+
"value": "1px"
|
|
40
|
+
},
|
|
41
|
+
"2": {
|
|
42
|
+
"value": "2px"
|
|
43
|
+
},
|
|
44
|
+
"4": {
|
|
45
|
+
"value": "4px"
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
// If you prefer to use a scale for border-radius, you can define it here.
|
|
49
|
+
"scale": {
|
|
50
|
+
"value": 1.5
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color-pool": {
|
|
3
|
+
"straw-gold": {
|
|
4
|
+
"100": {
|
|
5
|
+
"value": "#FBEFD2FF",
|
|
6
|
+
"type": "color",
|
|
7
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
8
|
+
},
|
|
9
|
+
"200": {
|
|
10
|
+
"value": "#E3C567FF",
|
|
11
|
+
"type": "color",
|
|
12
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
13
|
+
},
|
|
14
|
+
"300": {
|
|
15
|
+
"value": "#B79F52FF",
|
|
16
|
+
"type": "color",
|
|
17
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
18
|
+
},
|
|
19
|
+
"400": {
|
|
20
|
+
"value": "#8D7A3DFF",
|
|
21
|
+
"type": "color",
|
|
22
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
23
|
+
},
|
|
24
|
+
"500": {
|
|
25
|
+
"value": "#65572AFF",
|
|
26
|
+
"type": "color",
|
|
27
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
28
|
+
},
|
|
29
|
+
"600": {
|
|
30
|
+
"value": "#403718FF",
|
|
31
|
+
"type": "color",
|
|
32
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
33
|
+
},
|
|
34
|
+
"700": {
|
|
35
|
+
"value": "#1E1908FF",
|
|
36
|
+
"type": "color",
|
|
37
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
38
|
+
},
|
|
39
|
+
"800": {
|
|
40
|
+
"value": "#0A0600FF",
|
|
41
|
+
"type": "color",
|
|
42
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
43
|
+
},
|
|
44
|
+
"900": {
|
|
45
|
+
"value": "#030200FF",
|
|
46
|
+
"type": "color",
|
|
47
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
48
|
+
},
|
|
49
|
+
"base": {
|
|
50
|
+
"value": "#E3C567FF",
|
|
51
|
+
"type": "color",
|
|
52
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"graphite": {
|
|
56
|
+
"100": {
|
|
57
|
+
"value": "#DCE0DCFF",
|
|
58
|
+
"type": "color",
|
|
59
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
60
|
+
},
|
|
61
|
+
"200": {
|
|
62
|
+
"value": "#B5B8B5FF",
|
|
63
|
+
"type": "color",
|
|
64
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
65
|
+
},
|
|
66
|
+
"300": {
|
|
67
|
+
"value": "#8F928FFF",
|
|
68
|
+
"type": "color",
|
|
69
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
70
|
+
},
|
|
71
|
+
"400": {
|
|
72
|
+
"value": "#6B6D6BFF",
|
|
73
|
+
"type": "color",
|
|
74
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
75
|
+
},
|
|
76
|
+
"500": {
|
|
77
|
+
"value": "#494B49FF",
|
|
78
|
+
"type": "color",
|
|
79
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
80
|
+
},
|
|
81
|
+
"600": {
|
|
82
|
+
"value": "#2A2B2AFF",
|
|
83
|
+
"type": "color",
|
|
84
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
85
|
+
},
|
|
86
|
+
"700": {
|
|
87
|
+
"value": "#101110FF",
|
|
88
|
+
"type": "color",
|
|
89
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
90
|
+
},
|
|
91
|
+
"800": {
|
|
92
|
+
"value": "#050505FF",
|
|
93
|
+
"type": "color",
|
|
94
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
95
|
+
},
|
|
96
|
+
"900": {
|
|
97
|
+
"value": "#010101FF",
|
|
98
|
+
"type": "color",
|
|
99
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
100
|
+
},
|
|
101
|
+
"base": {
|
|
102
|
+
"value": "#2A2B2AFF",
|
|
103
|
+
"type": "color",
|
|
104
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"intense-cherry": {
|
|
108
|
+
"100": {
|
|
109
|
+
"value": "#FBEEEEFF",
|
|
110
|
+
"type": "color",
|
|
111
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
112
|
+
},
|
|
113
|
+
"200": {
|
|
114
|
+
"value": "#F3CBCCFF",
|
|
115
|
+
"type": "color",
|
|
116
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
117
|
+
},
|
|
118
|
+
"300": {
|
|
119
|
+
"value": "#EA9799FF",
|
|
120
|
+
"type": "color",
|
|
121
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
122
|
+
},
|
|
123
|
+
"400": {
|
|
124
|
+
"value": "#E4595DFF",
|
|
125
|
+
"type": "color",
|
|
126
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
127
|
+
},
|
|
128
|
+
"500": {
|
|
129
|
+
"value": "#B4363BFF",
|
|
130
|
+
"type": "color",
|
|
131
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
132
|
+
},
|
|
133
|
+
"600": {
|
|
134
|
+
"value": "#7A2225FF",
|
|
135
|
+
"type": "color",
|
|
136
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
137
|
+
},
|
|
138
|
+
"700": {
|
|
139
|
+
"value": "#450F11FF",
|
|
140
|
+
"type": "color",
|
|
141
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
142
|
+
},
|
|
143
|
+
"800": {
|
|
144
|
+
"value": "#1C0304FF",
|
|
145
|
+
"type": "color",
|
|
146
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
147
|
+
},
|
|
148
|
+
"900": {
|
|
149
|
+
"value": "#060001FF",
|
|
150
|
+
"type": "color",
|
|
151
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
152
|
+
},
|
|
153
|
+
"base": {
|
|
154
|
+
"value": "#B4363BFF",
|
|
155
|
+
"type": "color",
|
|
156
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"vanilla-custard": {
|
|
160
|
+
"100": {
|
|
161
|
+
"value": "#EDDA9FFF",
|
|
162
|
+
"type": "color",
|
|
163
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
164
|
+
},
|
|
165
|
+
"200": {
|
|
166
|
+
"value": "#C2B382FF",
|
|
167
|
+
"type": "color",
|
|
168
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
169
|
+
},
|
|
170
|
+
"300": {
|
|
171
|
+
"value": "#998D65FF",
|
|
172
|
+
"type": "color",
|
|
173
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
174
|
+
},
|
|
175
|
+
"400": {
|
|
176
|
+
"value": "#72694BFF",
|
|
177
|
+
"type": "color",
|
|
178
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
179
|
+
},
|
|
180
|
+
"500": {
|
|
181
|
+
"value": "#4E4731FF",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
184
|
+
},
|
|
185
|
+
"600": {
|
|
186
|
+
"value": "#2C271AFF",
|
|
187
|
+
"type": "color",
|
|
188
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
189
|
+
},
|
|
190
|
+
"700": {
|
|
191
|
+
"value": "#131109FF",
|
|
192
|
+
"type": "color",
|
|
193
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
"800": {
|
|
197
|
+
"value": "#040302FF",
|
|
198
|
+
"type": "color",
|
|
199
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
200
|
+
},
|
|
201
|
+
"900": {
|
|
202
|
+
"value": "#010101FF",
|
|
203
|
+
"type": "color",
|
|
204
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
205
|
+
},
|
|
206
|
+
"base": {
|
|
207
|
+
"value": "#EDDA9FFF",
|
|
208
|
+
"type": "color",
|
|
209
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"vanilla-cream": {
|
|
213
|
+
"100": {
|
|
214
|
+
"value": "#F7EED3FF",
|
|
215
|
+
"type": "color",
|
|
216
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
217
|
+
},
|
|
218
|
+
"200": {
|
|
219
|
+
"value": "#D6C68CFF",
|
|
220
|
+
"type": "color",
|
|
221
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
222
|
+
},
|
|
223
|
+
"300": {
|
|
224
|
+
"value": "#AC9F70FF",
|
|
225
|
+
"type": "color",
|
|
226
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
227
|
+
},
|
|
228
|
+
"400": {
|
|
229
|
+
"value": "#857A55FF",
|
|
230
|
+
"type": "color",
|
|
231
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
232
|
+
},
|
|
233
|
+
"500": {
|
|
234
|
+
"value": "#5F573BFF",
|
|
235
|
+
"type": "color",
|
|
236
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
237
|
+
},
|
|
238
|
+
"600": {
|
|
239
|
+
"value": "#3B3624FF",
|
|
240
|
+
"type": "color",
|
|
241
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
242
|
+
},
|
|
243
|
+
"700": {
|
|
244
|
+
"value": "#1B180EFF",
|
|
245
|
+
"type": "color",
|
|
246
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
247
|
+
},
|
|
248
|
+
|
|
249
|
+
"800": {
|
|
250
|
+
"value": "#060503FF",
|
|
251
|
+
"type": "color",
|
|
252
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
253
|
+
},
|
|
254
|
+
"900": {
|
|
255
|
+
"value": "#010101FF",
|
|
256
|
+
"type": "color",
|
|
257
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
258
|
+
},
|
|
259
|
+
"base": {
|
|
260
|
+
"value": "#F7EED3FF",
|
|
261
|
+
"type": "color",
|
|
262
|
+
"attributes": { "tokenTier": "color-pool" }
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"yellow": {
|
|
4
|
+
"100": {
|
|
5
|
+
"value": "{color-pool.straw-gold.100}",
|
|
6
|
+
"type": "color",
|
|
7
|
+
"attributes": { "tokenTier": "primitive" }
|
|
8
|
+
},
|
|
9
|
+
"200": {
|
|
10
|
+
"value": "{color-pool.straw-gold.200}",
|
|
11
|
+
"type": "color",
|
|
12
|
+
"attributes": { "tokenTier": "primitive" }
|
|
13
|
+
},
|
|
14
|
+
"300": {
|
|
15
|
+
"value": "{color-pool.straw-gold.300}",
|
|
16
|
+
"type": "color",
|
|
17
|
+
"attributes": { "tokenTier": "primitive" }
|
|
18
|
+
},
|
|
19
|
+
"400": {
|
|
20
|
+
"value": "{color-pool.straw-gold.400}",
|
|
21
|
+
"type": "color",
|
|
22
|
+
"attributes": { "tokenTier": "primitive" }
|
|
23
|
+
},
|
|
24
|
+
"500": {
|
|
25
|
+
"value": "{color-pool.straw-gold.500}",
|
|
26
|
+
"type": "color",
|
|
27
|
+
"attributes": { "tokenTier": "primitive" }
|
|
28
|
+
},
|
|
29
|
+
"600": {
|
|
30
|
+
"value": "{color-pool.straw-gold.600}",
|
|
31
|
+
"type": "color",
|
|
32
|
+
"attributes": { "tokenTier": "primitive" }
|
|
33
|
+
},
|
|
34
|
+
"700": {
|
|
35
|
+
"value": "{color-pool.straw-gold.700}",
|
|
36
|
+
"type": "color",
|
|
37
|
+
"attributes": { "tokenTier": "primitive" }
|
|
38
|
+
},
|
|
39
|
+
"800": {
|
|
40
|
+
"value": "{color-pool.straw-gold.800}",
|
|
41
|
+
"type": "color",
|
|
42
|
+
"attributes": { "tokenTier": "primitive" }
|
|
43
|
+
},
|
|
44
|
+
"900": {
|
|
45
|
+
"value": "{color-pool.straw-gold.900}",
|
|
46
|
+
"type": "color",
|
|
47
|
+
"attributes": { "tokenTier": "primitive" }
|
|
48
|
+
},
|
|
49
|
+
"base": {
|
|
50
|
+
"value": "{color-pool.straw-gold.base}",
|
|
51
|
+
"type": "color",
|
|
52
|
+
"attributes": { "tokenTier": "primitive" }
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"graphite": {
|
|
56
|
+
"100": {
|
|
57
|
+
"value": "{color-pool.graphite.100}",
|
|
58
|
+
"type": "color",
|
|
59
|
+
"attributes": { "tokenTier": "primitive" }
|
|
60
|
+
},
|
|
61
|
+
"200": {
|
|
62
|
+
"value": "{color-pool.graphite.200}",
|
|
63
|
+
"type": "color",
|
|
64
|
+
"attributes": { "tokenTier": "primitive" }
|
|
65
|
+
},
|
|
66
|
+
"300": {
|
|
67
|
+
"value": "{color-pool.graphite.300}",
|
|
68
|
+
"type": "color",
|
|
69
|
+
"attributes": { "tokenTier": "primitive" }
|
|
70
|
+
},
|
|
71
|
+
"400": {
|
|
72
|
+
"value": "{color-pool.graphite.400}",
|
|
73
|
+
"type": "color",
|
|
74
|
+
"attributes": { "tokenTier": "primitive" }
|
|
75
|
+
},
|
|
76
|
+
"500": {
|
|
77
|
+
"value": "{color-pool.graphite.500}",
|
|
78
|
+
"type": "color",
|
|
79
|
+
"attributes": { "tokenTier": "primitive" }
|
|
80
|
+
},
|
|
81
|
+
"600": {
|
|
82
|
+
"value": "{color-pool.graphite.600}",
|
|
83
|
+
"type": "color",
|
|
84
|
+
"attributes": { "tokenTier": "primitive" }
|
|
85
|
+
},
|
|
86
|
+
"700": {
|
|
87
|
+
"value": "{color-pool.graphite.700}",
|
|
88
|
+
"type": "color",
|
|
89
|
+
"attributes": { "tokenTier": "primitive" }
|
|
90
|
+
},
|
|
91
|
+
"800": {
|
|
92
|
+
"value": "{color-pool.graphite.800}",
|
|
93
|
+
"type": "color",
|
|
94
|
+
"attributes": { "tokenTier": "primitive" }
|
|
95
|
+
},
|
|
96
|
+
"900": {
|
|
97
|
+
"value": "{color-pool.graphite.900}",
|
|
98
|
+
"type": "color",
|
|
99
|
+
"attributes": { "tokenTier": "primitive" }
|
|
100
|
+
},
|
|
101
|
+
"base": {
|
|
102
|
+
"value": "{color-pool.graphite.base}",
|
|
103
|
+
"type": "color",
|
|
104
|
+
"attributes": { "tokenTier": "primitive" }
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"intense-cherry": {
|
|
108
|
+
"100": {
|
|
109
|
+
"value": "{color-pool.intense-cherry.100}",
|
|
110
|
+
"type": "color",
|
|
111
|
+
"attributes": { "tokenTier": "primitive" }
|
|
112
|
+
},
|
|
113
|
+
"200": {
|
|
114
|
+
"value": "{color-pool.intense-cherry.200}",
|
|
115
|
+
"type": "color",
|
|
116
|
+
"attributes": { "tokenTier": "primitive" }
|
|
117
|
+
},
|
|
118
|
+
"300": {
|
|
119
|
+
"value": "{color-pool.intense-cherry.300}",
|
|
120
|
+
"type": "color",
|
|
121
|
+
"attributes": { "tokenTier": "primitive" }
|
|
122
|
+
},
|
|
123
|
+
"400": {
|
|
124
|
+
"value": "{color-pool.intense-cherry.400}",
|
|
125
|
+
"type": "color",
|
|
126
|
+
"attributes": { "tokenTier": "primitive" }
|
|
127
|
+
},
|
|
128
|
+
"500": {
|
|
129
|
+
"value": "{color-pool.intense-cherry.500}",
|
|
130
|
+
"type": "color",
|
|
131
|
+
"attributes": { "tokenTier": "primitive" }
|
|
132
|
+
},
|
|
133
|
+
"600": {
|
|
134
|
+
"value": "{color-pool.intense-cherry.600}",
|
|
135
|
+
"type": "color",
|
|
136
|
+
"attributes": { "tokenTier": "primitive" }
|
|
137
|
+
},
|
|
138
|
+
"700": {
|
|
139
|
+
"value": "{color-pool.intense-cherry.700}",
|
|
140
|
+
"type": "color",
|
|
141
|
+
"attributes": { "tokenTier": "primitive" }
|
|
142
|
+
},
|
|
143
|
+
"800": {
|
|
144
|
+
"value": "{color-pool.intense-cherry.800}",
|
|
145
|
+
"type": "color",
|
|
146
|
+
"attributes": { "tokenTier": "primitive" }
|
|
147
|
+
},
|
|
148
|
+
"900": {
|
|
149
|
+
"value": "{color-pool.intense-cherry.900}",
|
|
150
|
+
"type": "color",
|
|
151
|
+
"attributes": { "tokenTier": "primitive" }
|
|
152
|
+
},
|
|
153
|
+
"base": {
|
|
154
|
+
"value": "{color-pool.intense-cherry.base}",
|
|
155
|
+
"type": "color",
|
|
156
|
+
"attributes": { "tokenTier": "primitive" }
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"vanilla-custard": {
|
|
160
|
+
"100": {
|
|
161
|
+
"value": "{color-pool.vanilla-custard.100}",
|
|
162
|
+
"type": "color",
|
|
163
|
+
"attributes": { "tokenTier": "primitive" }
|
|
164
|
+
},
|
|
165
|
+
"200": {
|
|
166
|
+
"value": "{color-pool.vanilla-custard.200}",
|
|
167
|
+
"type": "color",
|
|
168
|
+
"attributes": { "tokenTier": "primitive" }
|
|
169
|
+
},
|
|
170
|
+
"300": {
|
|
171
|
+
"value": "{color-pool.vanilla-custard.300}",
|
|
172
|
+
"type": "color",
|
|
173
|
+
"attributes": { "tokenTier": "primitive" }
|
|
174
|
+
},
|
|
175
|
+
"400": {
|
|
176
|
+
"value": "{color-pool.vanilla-custard.400}",
|
|
177
|
+
"type": "color",
|
|
178
|
+
"attributes": { "tokenTier": "primitive" }
|
|
179
|
+
},
|
|
180
|
+
"500": {
|
|
181
|
+
"value": "{color-pool.vanilla-custard.500}",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"attributes": { "tokenTier": "primitive" }
|
|
184
|
+
},
|
|
185
|
+
"600": {
|
|
186
|
+
"value": "{color-pool.vanilla-custard.600}",
|
|
187
|
+
"type": "color",
|
|
188
|
+
"attributes": { "tokenTier": "primitive" }
|
|
189
|
+
},
|
|
190
|
+
"700": {
|
|
191
|
+
"value": "{color-pool.vanilla-custard.700}",
|
|
192
|
+
"type": "color",
|
|
193
|
+
"attributes": { "tokenTier": "primitive" }
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
"800": {
|
|
197
|
+
"value": "{color-pool.vanilla-custard.800}",
|
|
198
|
+
"type": "color",
|
|
199
|
+
"attributes": { "tokenTier": "primitive" }
|
|
200
|
+
},
|
|
201
|
+
"900": {
|
|
202
|
+
"value": "{color-pool.vanilla-custard.900}",
|
|
203
|
+
"type": "color",
|
|
204
|
+
"attributes": { "tokenTier": "primitive" }
|
|
205
|
+
},
|
|
206
|
+
"base": {
|
|
207
|
+
"value": "{color-pool.vanilla-custard.base}",
|
|
208
|
+
"type": "color",
|
|
209
|
+
"attributes": { "tokenTier": "primitive" }
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"vanilla-cream": {
|
|
213
|
+
"100": {
|
|
214
|
+
"value": "{color-pool.vanilla-cream.100}",
|
|
215
|
+
"type": "color",
|
|
216
|
+
"attributes": { "tokenTier": "primitive" }
|
|
217
|
+
},
|
|
218
|
+
"200": {
|
|
219
|
+
"value": "{color-pool.vanilla-cream.200}",
|
|
220
|
+
"type": "color",
|
|
221
|
+
"attributes": { "tokenTier": "primitive" }
|
|
222
|
+
},
|
|
223
|
+
"300": {
|
|
224
|
+
"value": "{color-pool.vanilla-cream.300}",
|
|
225
|
+
"type": "color",
|
|
226
|
+
"attributes": { "tokenTier": "primitive" }
|
|
227
|
+
},
|
|
228
|
+
"400": {
|
|
229
|
+
"value": "{color-pool.vanilla-cream.400}",
|
|
230
|
+
"type": "color",
|
|
231
|
+
"attributes": { "tokenTier": "primitive" }
|
|
232
|
+
},
|
|
233
|
+
"500": {
|
|
234
|
+
"value": "{color-pool.vanilla-cream.500}",
|
|
235
|
+
"type": "color",
|
|
236
|
+
"attributes": { "tokenTier": "primitive" }
|
|
237
|
+
},
|
|
238
|
+
"600": {
|
|
239
|
+
"value": "{color-pool.vanilla-cream.600}",
|
|
240
|
+
"type": "color",
|
|
241
|
+
"attributes": { "tokenTier": "primitive" }
|
|
242
|
+
},
|
|
243
|
+
"700": {
|
|
244
|
+
"value": "{color-pool.vanilla-cream.700}",
|
|
245
|
+
"type": "color",
|
|
246
|
+
"attributes": { "tokenTier": "primitive" }
|
|
247
|
+
},
|
|
248
|
+
|
|
249
|
+
"800": {
|
|
250
|
+
"value": "{color-pool.vanilla-cream.800}",
|
|
251
|
+
"type": "color",
|
|
252
|
+
"attributes": { "tokenTier": "primitive" }
|
|
253
|
+
},
|
|
254
|
+
"900": {
|
|
255
|
+
"value": "{color-pool.vanilla-cream.900}",
|
|
256
|
+
"type": "color",
|
|
257
|
+
"attributes": { "tokenTier": "primitive" }
|
|
258
|
+
},
|
|
259
|
+
"base": {
|
|
260
|
+
"value": "{color-pool.vanilla-cream.base}",
|
|
261
|
+
"type": "color",
|
|
262
|
+
"attributes": { "tokenTier": "primitive" }
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"font": {
|
|
3
|
+
"scale": {
|
|
4
|
+
"0": {
|
|
5
|
+
"value": "clamp(0.875rem, 0.6304347826086957rem + 1.0869565217391304vw, 1.5rem)"
|
|
6
|
+
},
|
|
7
|
+
"1": {
|
|
8
|
+
"value": "clamp(0.984375rem, 0.6652173913043479rem + 1.418478260869565vw, 1.7999999999999998rem)"
|
|
9
|
+
},
|
|
10
|
+
"2": {
|
|
11
|
+
"value": "clamp(1.107421875rem, 0.6955434782608696rem + 1.8305706521739133vw, 2.16rem)"
|
|
12
|
+
},
|
|
13
|
+
"3": {
|
|
14
|
+
"value": "clamp(1.245849609375rem, 0.7190951086956524rem + 2.341131114130434vw, 2.5919999999999996rem)"
|
|
15
|
+
},
|
|
16
|
+
"4": {
|
|
17
|
+
"value": "clamp(1.401580810546875rem, 0.7329124320652175rem + 2.9718594599184778vw, 3.1104rem)"
|
|
18
|
+
},
|
|
19
|
+
"5": {
|
|
20
|
+
"value": "clamp(1.5767784118652344rem, 0.7332430078125004rem + 3.749046240234373vw, 3.732479999999999rem)"
|
|
21
|
+
},
|
|
22
|
+
"6": {
|
|
23
|
+
"value": "clamp(1.7738757133483887rem, 0.7153582098760192rem + 4.704522237654976vw, 4.478975999999999rem)"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|