@teamturing/token-studio 1.1.8 → 1.2.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.
@@ -77,7 +77,95 @@ declare const shade: {
77
77
  readonly black: "#000000";
78
78
  readonly black60A: "#00000099";
79
79
  };
80
+ declare const fuchsiaPink: {
81
+ fuchsiaPink50: string;
82
+ fuchsiaPink100: string;
83
+ fuchsiaPink200: string;
84
+ fuchsiaPink300: string;
85
+ fuchsiaPink400: string;
86
+ fuchsiaPink500: string;
87
+ fuchsiaPink600: string;
88
+ fuchsiaPink700: string;
89
+ fuchsiaPink800: string;
90
+ fuchsiaPink900: string;
91
+ };
92
+ declare const skyBlue: {
93
+ skyBlue50: string;
94
+ skyBlue100: string;
95
+ skyBlue200: string;
96
+ skyBlue300: string;
97
+ skyBlue400: string;
98
+ skyBlue500: string;
99
+ skyBlue600: string;
100
+ skyBlue700: string;
101
+ skyBlue800: string;
102
+ skyBlue900: string;
103
+ };
104
+ declare const indianRed: {
105
+ indianRed50: string;
106
+ indianRed100: string;
107
+ indianRed200: string;
108
+ indianRed300: string;
109
+ indianRed400: string;
110
+ indianRed500: string;
111
+ indianRed600: string;
112
+ indianRed700: string;
113
+ indianRed800: string;
114
+ indianRed900: string;
115
+ };
116
+ declare const mustardYellow: {
117
+ mustardYellow50: string;
118
+ mustardYellow100: string;
119
+ mustardYellow200: string;
120
+ mustardYellow300: string;
121
+ mustardYellow400: string;
122
+ mustardYellow500: string;
123
+ mustardYellow600: string;
124
+ mustardYellow700: string;
125
+ mustardYellow800: string;
126
+ mustardYellow900: string;
127
+ };
80
128
  declare const palette: {
129
+ mustardYellow50: string;
130
+ mustardYellow100: string;
131
+ mustardYellow200: string;
132
+ mustardYellow300: string;
133
+ mustardYellow400: string;
134
+ mustardYellow500: string;
135
+ mustardYellow600: string;
136
+ mustardYellow700: string;
137
+ mustardYellow800: string;
138
+ mustardYellow900: string;
139
+ indianRed50: string;
140
+ indianRed100: string;
141
+ indianRed200: string;
142
+ indianRed300: string;
143
+ indianRed400: string;
144
+ indianRed500: string;
145
+ indianRed600: string;
146
+ indianRed700: string;
147
+ indianRed800: string;
148
+ indianRed900: string;
149
+ skyBlue50: string;
150
+ skyBlue100: string;
151
+ skyBlue200: string;
152
+ skyBlue300: string;
153
+ skyBlue400: string;
154
+ skyBlue500: string;
155
+ skyBlue600: string;
156
+ skyBlue700: string;
157
+ skyBlue800: string;
158
+ skyBlue900: string;
159
+ fuchsiaPink50: string;
160
+ fuchsiaPink100: string;
161
+ fuchsiaPink200: string;
162
+ fuchsiaPink300: string;
163
+ fuchsiaPink400: string;
164
+ fuchsiaPink500: string;
165
+ fuchsiaPink600: string;
166
+ fuchsiaPink700: string;
167
+ fuchsiaPink800: string;
168
+ fuchsiaPink900: string;
81
169
  transparent: "#FFFFFF00";
82
170
  white: "#FFFFFF";
83
171
  white10A: "#FFFFFF1A";
@@ -145,4 +233,4 @@ declare const palette: {
145
233
  gray900: "#33373B";
146
234
  };
147
235
  export default palette;
148
- export { gray, violet, green, yellow, red, blue, shade };
236
+ export { gray, violet, green, yellow, red, blue, shade, fuchsiaPink, skyBlue, indianRed, mustardYellow };
package/dist/index.js CHANGED
@@ -88,6 +88,54 @@ const shade = {
88
88
  black: '#000000',
89
89
  black60A: '#00000099'
90
90
  };
91
+ const fuchsiaPink = {
92
+ fuchsiaPink50: '#FCF2FD',
93
+ fuchsiaPink100: '#F5D6F8',
94
+ fuchsiaPink200: '#F0C2F4',
95
+ fuchsiaPink300: '#E9A7EF',
96
+ fuchsiaPink400: '#E595EC',
97
+ fuchsiaPink500: '#DE7BE7',
98
+ fuchsiaPink600: '#CA70D2',
99
+ fuchsiaPink700: '#9E57A4',
100
+ fuchsiaPink800: '#7A447F',
101
+ fuchsiaPink900: '#5D3461'
102
+ };
103
+ const skyBlue = {
104
+ skyBlue50: '#EFF9FD',
105
+ skyBlue100: '#CFEDF8',
106
+ skyBlue200: '#B7E4F5',
107
+ skyBlue300: '#96D8F1',
108
+ skyBlue400: '#82D1EE',
109
+ skyBlue500: '#63C5EA',
110
+ skyBlue600: '#5AB3D5',
111
+ skyBlue700: '#468CA6',
112
+ skyBlue800: '#366C81',
113
+ skyBlue900: '#2A5362'
114
+ };
115
+ const indianRed = {
116
+ indianRed50: '#632A2A',
117
+ indianRed100: '#823838',
118
+ indianRed200: '#A84848',
119
+ indianRed300: '#D75C5C',
120
+ indianRed400: '#EC6565',
121
+ indianRed500: '#F08484',
122
+ indianRed600: '#F29898',
123
+ indianRed700: '#F6B8B8',
124
+ indianRed800: '#F9CFCF',
125
+ indianRed900: '#FDF0F0'
126
+ };
127
+ const mustardYellow = {
128
+ mustardYellow50: '#675025',
129
+ mustardYellow100: '#876931',
130
+ mustardYellow200: '#AE883F',
131
+ mustardYellow300: '#DFAE51',
132
+ mustardYellow400: '#F5BF59',
133
+ mustardYellow500: '#F7CC7A',
134
+ mustardYellow600: '#F8D490',
135
+ mustardYellow700: '#FAE2B3',
136
+ mustardYellow800: '#FCEBCC',
137
+ mustardYellow900: '#FEF9EE'
138
+ };
91
139
  const palette = {
92
140
  ...gray,
93
141
  ...violet,
@@ -95,7 +143,11 @@ const palette = {
95
143
  ...yellow,
96
144
  ...red,
97
145
  ...blue,
98
- ...shade
146
+ ...shade,
147
+ ...fuchsiaPink,
148
+ ...skyBlue,
149
+ ...indianRed,
150
+ ...mustardYellow
99
151
  };
100
152
 
101
153
  const textColor = {
@@ -124,6 +176,9 @@ const bgColor = {
124
176
  'bg/primary': palette.violet500,
125
177
  'bg/primary/hovered': palette.violet700,
126
178
  'bg/primary/pressed': palette.violet700,
179
+ 'bg/neutral/subtlest': palette.transparent,
180
+ 'bg/neutral/subtlest/hovered': palette.gray50,
181
+ 'bg/neutral/subtlest/pressed': palette.gray50,
127
182
  'bg/neutral/subtler': palette.transparent,
128
183
  'bg/neutral/subtler/hovered': palette.gray100,
129
184
  'bg/neutral/subtler/pressed': palette.gray100,
@@ -234,7 +289,67 @@ const scaleColor = {
234
289
  'scale/gray/6': palette.gray600,
235
290
  'scale/gray/7': palette.gray700,
236
291
  'scale/gray/8': palette.gray800,
237
- 'scale/gray/9': palette.gray900
292
+ 'scale/gray/9': palette.gray900,
293
+ 'scale/blue/0': palette.blue50,
294
+ 'scale/blue/1': palette.blue100,
295
+ 'scale/blue/2': palette.blue200,
296
+ 'scale/blue/3': palette.blue300,
297
+ 'scale/blue/4': palette.blue400,
298
+ 'scale/blue/5': palette.blue500,
299
+ 'scale/blue/6': palette.blue600,
300
+ 'scale/blue/7': palette.blue700,
301
+ 'scale/blue/8': palette.blue800,
302
+ 'scale/blue/9': palette.blue900,
303
+ 'scale/green/0': palette.green50,
304
+ 'scale/green/1': palette.green100,
305
+ 'scale/green/2': palette.green200,
306
+ 'scale/green/3': palette.green300,
307
+ 'scale/green/4': palette.green400,
308
+ 'scale/green/5': palette.green500,
309
+ 'scale/green/6': palette.green600,
310
+ 'scale/green/7': palette.green700,
311
+ 'scale/green/8': palette.green800,
312
+ 'scale/green/9': palette.green900,
313
+ 'scale/pink/0': palette.fuchsiaPink50,
314
+ 'scale/pink/1': palette.fuchsiaPink100,
315
+ 'scale/pink/2': palette.fuchsiaPink200,
316
+ 'scale/pink/3': palette.fuchsiaPink300,
317
+ 'scale/pink/4': palette.fuchsiaPink400,
318
+ 'scale/pink/5': palette.fuchsiaPink500,
319
+ 'scale/pink/6': palette.fuchsiaPink600,
320
+ 'scale/pink/7': palette.fuchsiaPink700,
321
+ 'scale/pink/8': palette.fuchsiaPink800,
322
+ 'scale/pink/9': palette.fuchsiaPink900,
323
+ 'scale/skyblue/0': palette.skyBlue50,
324
+ 'scale/skyblue/1': palette.skyBlue100,
325
+ 'scale/skyblue/2': palette.skyBlue200,
326
+ 'scale/skyblue/3': palette.skyBlue300,
327
+ 'scale/skyblue/4': palette.skyBlue400,
328
+ 'scale/skyblue/5': palette.skyBlue500,
329
+ 'scale/skyblue/6': palette.skyBlue600,
330
+ 'scale/skyblue/7': palette.skyBlue700,
331
+ 'scale/skyblue/8': palette.skyBlue800,
332
+ 'scale/skyblue/9': palette.skyBlue900,
333
+ 'scale/red/0': palette.indianRed50,
334
+ 'scale/red/1': palette.indianRed100,
335
+ 'scale/red/2': palette.indianRed200,
336
+ 'scale/red/3': palette.indianRed300,
337
+ 'scale/red/4': palette.indianRed400,
338
+ 'scale/red/5': palette.indianRed500,
339
+ 'scale/red/6': palette.indianRed600,
340
+ 'scale/red/7': palette.indianRed700,
341
+ 'scale/red/8': palette.indianRed800,
342
+ 'scale/red/9': palette.indianRed900,
343
+ 'scale/yellow/0': palette.mustardYellow50,
344
+ 'scale/yellow/1': palette.mustardYellow100,
345
+ 'scale/yellow/2': palette.mustardYellow200,
346
+ 'scale/yellow/3': palette.mustardYellow300,
347
+ 'scale/yellow/4': palette.mustardYellow400,
348
+ 'scale/yellow/5': palette.mustardYellow500,
349
+ 'scale/yellow/6': palette.mustardYellow600,
350
+ 'scale/yellow/7': palette.mustardYellow700,
351
+ 'scale/yellow/8': palette.mustardYellow800,
352
+ 'scale/yellow/9': palette.mustardYellow900
238
353
  };
239
354
  const color = {
240
355
  ...textColor,
@@ -24,6 +24,9 @@ declare const bgColor: {
24
24
  readonly 'bg/primary': "#835EEB";
25
25
  readonly 'bg/primary/hovered': "#5D43A7";
26
26
  readonly 'bg/primary/pressed': "#5D43A7";
27
+ readonly 'bg/neutral/subtlest': "#FFFFFF00";
28
+ readonly 'bg/neutral/subtlest/hovered': "#F9FAFB";
29
+ readonly 'bg/neutral/subtlest/pressed': "#F9FAFB";
27
30
  readonly 'bg/neutral/subtler': "#FFFFFF00";
28
31
  readonly 'bg/neutral/subtler/hovered': "#F3F4F6";
29
32
  readonly 'bg/neutral/subtler/pressed': "#F3F4F6";
@@ -135,6 +138,66 @@ declare const scaleColor: {
135
138
  'scale/gray/7': "#575C64";
136
139
  'scale/gray/8': "#43484E";
137
140
  'scale/gray/9': "#33373B";
141
+ 'scale/blue/0': "#edf2fd";
142
+ 'scale/blue/1': "#c6d8fa";
143
+ 'scale/blue/2': "#abc5f7";
144
+ 'scale/blue/3': "#84aaf4";
145
+ 'scale/blue/4': "#6d99f1";
146
+ 'scale/blue/5': "#4880ee";
147
+ 'scale/blue/6': "#4274d9";
148
+ 'scale/blue/7': "#335ba9";
149
+ 'scale/blue/8': "#284683";
150
+ 'scale/blue/9': "#1e3664";
151
+ 'scale/green/0': "#E9FAF6";
152
+ 'scale/green/1': "#BAEFE2";
153
+ 'scale/green/2': "#98E8D4";
154
+ 'scale/green/3': "#69DDC0";
155
+ 'scale/green/4': "#4CD6B4";
156
+ 'scale/green/5': "#1FCCA1";
157
+ 'scale/green/6': "#1CBA93";
158
+ 'scale/green/7': "#169172";
159
+ 'scale/green/8': "#117059";
160
+ 'scale/green/9': "#0D5644";
161
+ 'scale/pink/0': string;
162
+ 'scale/pink/1': string;
163
+ 'scale/pink/2': string;
164
+ 'scale/pink/3': string;
165
+ 'scale/pink/4': string;
166
+ 'scale/pink/5': string;
167
+ 'scale/pink/6': string;
168
+ 'scale/pink/7': string;
169
+ 'scale/pink/8': string;
170
+ 'scale/pink/9': string;
171
+ 'scale/skyblue/0': string;
172
+ 'scale/skyblue/1': string;
173
+ 'scale/skyblue/2': string;
174
+ 'scale/skyblue/3': string;
175
+ 'scale/skyblue/4': string;
176
+ 'scale/skyblue/5': string;
177
+ 'scale/skyblue/6': string;
178
+ 'scale/skyblue/7': string;
179
+ 'scale/skyblue/8': string;
180
+ 'scale/skyblue/9': string;
181
+ 'scale/red/0': string;
182
+ 'scale/red/1': string;
183
+ 'scale/red/2': string;
184
+ 'scale/red/3': string;
185
+ 'scale/red/4': string;
186
+ 'scale/red/5': string;
187
+ 'scale/red/6': string;
188
+ 'scale/red/7': string;
189
+ 'scale/red/8': string;
190
+ 'scale/red/9': string;
191
+ 'scale/yellow/0': string;
192
+ 'scale/yellow/1': string;
193
+ 'scale/yellow/2': string;
194
+ 'scale/yellow/3': string;
195
+ 'scale/yellow/4': string;
196
+ 'scale/yellow/5': string;
197
+ 'scale/yellow/6': string;
198
+ 'scale/yellow/7': string;
199
+ 'scale/yellow/8': string;
200
+ 'scale/yellow/9': string;
138
201
  };
139
202
  declare const color: {
140
203
  readonly 'scale/violet/0': "#F3EFFD";
@@ -157,6 +220,66 @@ declare const color: {
157
220
  readonly 'scale/gray/7': "#575C64";
158
221
  readonly 'scale/gray/8': "#43484E";
159
222
  readonly 'scale/gray/9': "#33373B";
223
+ readonly 'scale/blue/0': "#edf2fd";
224
+ readonly 'scale/blue/1': "#c6d8fa";
225
+ readonly 'scale/blue/2': "#abc5f7";
226
+ readonly 'scale/blue/3': "#84aaf4";
227
+ readonly 'scale/blue/4': "#6d99f1";
228
+ readonly 'scale/blue/5': "#4880ee";
229
+ readonly 'scale/blue/6': "#4274d9";
230
+ readonly 'scale/blue/7': "#335ba9";
231
+ readonly 'scale/blue/8': "#284683";
232
+ readonly 'scale/blue/9': "#1e3664";
233
+ readonly 'scale/green/0': "#E9FAF6";
234
+ readonly 'scale/green/1': "#BAEFE2";
235
+ readonly 'scale/green/2': "#98E8D4";
236
+ readonly 'scale/green/3': "#69DDC0";
237
+ readonly 'scale/green/4': "#4CD6B4";
238
+ readonly 'scale/green/5': "#1FCCA1";
239
+ readonly 'scale/green/6': "#1CBA93";
240
+ readonly 'scale/green/7': "#169172";
241
+ readonly 'scale/green/8': "#117059";
242
+ readonly 'scale/green/9': "#0D5644";
243
+ readonly 'scale/pink/0': string;
244
+ readonly 'scale/pink/1': string;
245
+ readonly 'scale/pink/2': string;
246
+ readonly 'scale/pink/3': string;
247
+ readonly 'scale/pink/4': string;
248
+ readonly 'scale/pink/5': string;
249
+ readonly 'scale/pink/6': string;
250
+ readonly 'scale/pink/7': string;
251
+ readonly 'scale/pink/8': string;
252
+ readonly 'scale/pink/9': string;
253
+ readonly 'scale/skyblue/0': string;
254
+ readonly 'scale/skyblue/1': string;
255
+ readonly 'scale/skyblue/2': string;
256
+ readonly 'scale/skyblue/3': string;
257
+ readonly 'scale/skyblue/4': string;
258
+ readonly 'scale/skyblue/5': string;
259
+ readonly 'scale/skyblue/6': string;
260
+ readonly 'scale/skyblue/7': string;
261
+ readonly 'scale/skyblue/8': string;
262
+ readonly 'scale/skyblue/9': string;
263
+ readonly 'scale/red/0': string;
264
+ readonly 'scale/red/1': string;
265
+ readonly 'scale/red/2': string;
266
+ readonly 'scale/red/3': string;
267
+ readonly 'scale/red/4': string;
268
+ readonly 'scale/red/5': string;
269
+ readonly 'scale/red/6': string;
270
+ readonly 'scale/red/7': string;
271
+ readonly 'scale/red/8': string;
272
+ readonly 'scale/red/9': string;
273
+ readonly 'scale/yellow/0': string;
274
+ readonly 'scale/yellow/1': string;
275
+ readonly 'scale/yellow/2': string;
276
+ readonly 'scale/yellow/3': string;
277
+ readonly 'scale/yellow/4': string;
278
+ readonly 'scale/yellow/5': string;
279
+ readonly 'scale/yellow/6': string;
280
+ readonly 'scale/yellow/7': string;
281
+ readonly 'scale/yellow/8': string;
282
+ readonly 'scale/yellow/9': string;
160
283
  readonly dim: "#00000099";
161
284
  readonly link: "#4880ee";
162
285
  readonly 'link/hovered': "#335ba9";
@@ -206,6 +329,9 @@ declare const color: {
206
329
  readonly 'bg/primary': "#835EEB";
207
330
  readonly 'bg/primary/hovered': "#5D43A7";
208
331
  readonly 'bg/primary/pressed': "#5D43A7";
332
+ readonly 'bg/neutral/subtlest': "#FFFFFF00";
333
+ readonly 'bg/neutral/subtlest/hovered': "#F9FAFB";
334
+ readonly 'bg/neutral/subtlest/pressed': "#F9FAFB";
209
335
  readonly 'bg/neutral/subtler': "#FFFFFF00";
210
336
  readonly 'bg/neutral/subtler/hovered': "#F3F4F6";
211
337
  readonly 'bg/neutral/subtler/pressed': "#F3F4F6";
@@ -77,6 +77,54 @@ const shade = {
77
77
  black: '#000000',
78
78
  black60A: '#00000099'
79
79
  };
80
+ const fuchsiaPink = {
81
+ fuchsiaPink50: '#FCF2FD',
82
+ fuchsiaPink100: '#F5D6F8',
83
+ fuchsiaPink200: '#F0C2F4',
84
+ fuchsiaPink300: '#E9A7EF',
85
+ fuchsiaPink400: '#E595EC',
86
+ fuchsiaPink500: '#DE7BE7',
87
+ fuchsiaPink600: '#CA70D2',
88
+ fuchsiaPink700: '#9E57A4',
89
+ fuchsiaPink800: '#7A447F',
90
+ fuchsiaPink900: '#5D3461'
91
+ };
92
+ const skyBlue = {
93
+ skyBlue50: '#EFF9FD',
94
+ skyBlue100: '#CFEDF8',
95
+ skyBlue200: '#B7E4F5',
96
+ skyBlue300: '#96D8F1',
97
+ skyBlue400: '#82D1EE',
98
+ skyBlue500: '#63C5EA',
99
+ skyBlue600: '#5AB3D5',
100
+ skyBlue700: '#468CA6',
101
+ skyBlue800: '#366C81',
102
+ skyBlue900: '#2A5362'
103
+ };
104
+ const indianRed = {
105
+ indianRed50: '#632A2A',
106
+ indianRed100: '#823838',
107
+ indianRed200: '#A84848',
108
+ indianRed300: '#D75C5C',
109
+ indianRed400: '#EC6565',
110
+ indianRed500: '#F08484',
111
+ indianRed600: '#F29898',
112
+ indianRed700: '#F6B8B8',
113
+ indianRed800: '#F9CFCF',
114
+ indianRed900: '#FDF0F0'
115
+ };
116
+ const mustardYellow = {
117
+ mustardYellow50: '#675025',
118
+ mustardYellow100: '#876931',
119
+ mustardYellow200: '#AE883F',
120
+ mustardYellow300: '#DFAE51',
121
+ mustardYellow400: '#F5BF59',
122
+ mustardYellow500: '#F7CC7A',
123
+ mustardYellow600: '#F8D490',
124
+ mustardYellow700: '#FAE2B3',
125
+ mustardYellow800: '#FCEBCC',
126
+ mustardYellow900: '#FEF9EE'
127
+ };
80
128
  const palette = {
81
129
  ...gray,
82
130
  ...violet,
@@ -84,7 +132,11 @@ const palette = {
84
132
  ...yellow,
85
133
  ...red,
86
134
  ...blue,
87
- ...shade
135
+ ...shade,
136
+ ...fuchsiaPink,
137
+ ...skyBlue,
138
+ ...indianRed,
139
+ ...mustardYellow
88
140
  };
89
141
 
90
- export { blue, palette as default, gray, green, red, shade, violet, yellow };
142
+ export { blue, palette as default, fuchsiaPink, gray, green, indianRed, mustardYellow, red, shade, skyBlue, violet, yellow };
@@ -26,6 +26,9 @@ const bgColor = {
26
26
  'bg/primary': palette.violet500,
27
27
  'bg/primary/hovered': palette.violet700,
28
28
  'bg/primary/pressed': palette.violet700,
29
+ 'bg/neutral/subtlest': palette.transparent,
30
+ 'bg/neutral/subtlest/hovered': palette.gray50,
31
+ 'bg/neutral/subtlest/pressed': palette.gray50,
29
32
  'bg/neutral/subtler': palette.transparent,
30
33
  'bg/neutral/subtler/hovered': palette.gray100,
31
34
  'bg/neutral/subtler/pressed': palette.gray100,
@@ -136,7 +139,67 @@ const scaleColor = {
136
139
  'scale/gray/6': palette.gray600,
137
140
  'scale/gray/7': palette.gray700,
138
141
  'scale/gray/8': palette.gray800,
139
- 'scale/gray/9': palette.gray900
142
+ 'scale/gray/9': palette.gray900,
143
+ 'scale/blue/0': palette.blue50,
144
+ 'scale/blue/1': palette.blue100,
145
+ 'scale/blue/2': palette.blue200,
146
+ 'scale/blue/3': palette.blue300,
147
+ 'scale/blue/4': palette.blue400,
148
+ 'scale/blue/5': palette.blue500,
149
+ 'scale/blue/6': palette.blue600,
150
+ 'scale/blue/7': palette.blue700,
151
+ 'scale/blue/8': palette.blue800,
152
+ 'scale/blue/9': palette.blue900,
153
+ 'scale/green/0': palette.green50,
154
+ 'scale/green/1': palette.green100,
155
+ 'scale/green/2': palette.green200,
156
+ 'scale/green/3': palette.green300,
157
+ 'scale/green/4': palette.green400,
158
+ 'scale/green/5': palette.green500,
159
+ 'scale/green/6': palette.green600,
160
+ 'scale/green/7': palette.green700,
161
+ 'scale/green/8': palette.green800,
162
+ 'scale/green/9': palette.green900,
163
+ 'scale/pink/0': palette.fuchsiaPink50,
164
+ 'scale/pink/1': palette.fuchsiaPink100,
165
+ 'scale/pink/2': palette.fuchsiaPink200,
166
+ 'scale/pink/3': palette.fuchsiaPink300,
167
+ 'scale/pink/4': palette.fuchsiaPink400,
168
+ 'scale/pink/5': palette.fuchsiaPink500,
169
+ 'scale/pink/6': palette.fuchsiaPink600,
170
+ 'scale/pink/7': palette.fuchsiaPink700,
171
+ 'scale/pink/8': palette.fuchsiaPink800,
172
+ 'scale/pink/9': palette.fuchsiaPink900,
173
+ 'scale/skyblue/0': palette.skyBlue50,
174
+ 'scale/skyblue/1': palette.skyBlue100,
175
+ 'scale/skyblue/2': palette.skyBlue200,
176
+ 'scale/skyblue/3': palette.skyBlue300,
177
+ 'scale/skyblue/4': palette.skyBlue400,
178
+ 'scale/skyblue/5': palette.skyBlue500,
179
+ 'scale/skyblue/6': palette.skyBlue600,
180
+ 'scale/skyblue/7': palette.skyBlue700,
181
+ 'scale/skyblue/8': palette.skyBlue800,
182
+ 'scale/skyblue/9': palette.skyBlue900,
183
+ 'scale/red/0': palette.indianRed50,
184
+ 'scale/red/1': palette.indianRed100,
185
+ 'scale/red/2': palette.indianRed200,
186
+ 'scale/red/3': palette.indianRed300,
187
+ 'scale/red/4': palette.indianRed400,
188
+ 'scale/red/5': palette.indianRed500,
189
+ 'scale/red/6': palette.indianRed600,
190
+ 'scale/red/7': palette.indianRed700,
191
+ 'scale/red/8': palette.indianRed800,
192
+ 'scale/red/9': palette.indianRed900,
193
+ 'scale/yellow/0': palette.mustardYellow50,
194
+ 'scale/yellow/1': palette.mustardYellow100,
195
+ 'scale/yellow/2': palette.mustardYellow200,
196
+ 'scale/yellow/3': palette.mustardYellow300,
197
+ 'scale/yellow/4': palette.mustardYellow400,
198
+ 'scale/yellow/5': palette.mustardYellow500,
199
+ 'scale/yellow/6': palette.mustardYellow600,
200
+ 'scale/yellow/7': palette.mustardYellow700,
201
+ 'scale/yellow/8': palette.mustardYellow800,
202
+ 'scale/yellow/9': palette.mustardYellow900
140
203
  };
141
204
  const color = {
142
205
  ...textColor,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamturing/token-studio",
3
- "version": "1.1.8",
3
+ "version": "1.2.1",
4
4
  "description": "Foundations, tokens for Mathking design system",
5
5
  "author": "Sungchang Park <psch300@gmail.com> (https://github.com/psch300)",
6
6
  "homepage": "https://github.com/weareteamturing/bombe#readme",
@@ -27,5 +27,5 @@
27
27
  "bugs": {
28
28
  "url": "https://github.com/weareteamturing/bombe/issues"
29
29
  },
30
- "gitHead": "ca3fa5007b20b0b828c49f8ba09c58007b805442"
30
+ "gitHead": "6404b5d83461fa7855d12802cb4d1fe1f0649e31"
31
31
  }