@l3mpire/tokens 0.5.3
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 +176 -0
- package/dist/css/components.css +322 -0
- package/dist/css/fonts.css +23 -0
- package/dist/css/primitives.css +121 -0
- package/dist/css/semantic.css +139 -0
- package/dist/css/sizing.css +42 -0
- package/dist/css/tokens-dark.css +254 -0
- package/dist/css/tokens.css +623 -0
- package/dist/ts/tokens.ts +622 -0
- package/package.json +30 -0
|
@@ -0,0 +1,622 @@
|
|
|
1
|
+
export const tokens = {
|
|
2
|
+
"blue-50": "#f5f8ff",
|
|
3
|
+
"blue-100": "#e0ebff",
|
|
4
|
+
"blue-200": "#c7dcff",
|
|
5
|
+
"blue-300": "#a3c7ff",
|
|
6
|
+
"blue-400": "#7aa8ff",
|
|
7
|
+
"blue-500": "#316bff",
|
|
8
|
+
"blue-600": "#1f5eff",
|
|
9
|
+
"blue-700": "#134cdd",
|
|
10
|
+
"blue-800": "#0d3bb0",
|
|
11
|
+
"blue-900": "#072d8e",
|
|
12
|
+
"pink-50": "#fff5f8",
|
|
13
|
+
"pink-100": "#ffeef2",
|
|
14
|
+
"pink-200": "#ffd9e4",
|
|
15
|
+
"pink-300": "#ffb0cc",
|
|
16
|
+
"pink-400": "#ff88aa",
|
|
17
|
+
"pink-500": "#ec6181",
|
|
18
|
+
"pink-600": "#d94872",
|
|
19
|
+
"pink-700": "#ab465e",
|
|
20
|
+
"pink-800": "#8a3649",
|
|
21
|
+
"pink-900": "#641225",
|
|
22
|
+
"red-50": "#fff5f5",
|
|
23
|
+
"red-100": "#ffe7e2",
|
|
24
|
+
"red-200": "#ffc9c9",
|
|
25
|
+
"red-300": "#f8b1b1",
|
|
26
|
+
"red-400": "#f57575",
|
|
27
|
+
"red-500": "#ec4343",
|
|
28
|
+
"red-600": "#d92828",
|
|
29
|
+
"red-700": "#be0723",
|
|
30
|
+
"red-800": "#9e0821",
|
|
31
|
+
"red-900": "#8c0000",
|
|
32
|
+
"green-50": "#f0fdf0",
|
|
33
|
+
"green-100": "#e5fce5",
|
|
34
|
+
"green-200": "#c8f4c8",
|
|
35
|
+
"green-300": "#9ae299",
|
|
36
|
+
"green-400": "#5dd85a",
|
|
37
|
+
"green-500": "#31c52e",
|
|
38
|
+
"green-600": "#1fb01c",
|
|
39
|
+
"green-700": "#009e00",
|
|
40
|
+
"green-800": "#008200",
|
|
41
|
+
"green-900": "#007300",
|
|
42
|
+
"yellow-50": "#fffef5",
|
|
43
|
+
"yellow-100": "#fff8d3",
|
|
44
|
+
"yellow-200": "#fff0a7",
|
|
45
|
+
"yellow-300": "#ffe172",
|
|
46
|
+
"yellow-400": "#f5ca3d",
|
|
47
|
+
"yellow-500": "#dfb009",
|
|
48
|
+
"yellow-600": "#d9aa00",
|
|
49
|
+
"yellow-700": "#b88f00",
|
|
50
|
+
"yellow-800": "#9c7700",
|
|
51
|
+
"yellow-900": "#916d00",
|
|
52
|
+
"purple-50": "#faf8ff",
|
|
53
|
+
"purple-100": "#f5f0ff",
|
|
54
|
+
"purple-200": "#ebe4ff",
|
|
55
|
+
"purple-300": "#d3bcfc",
|
|
56
|
+
"purple-400": "#b89df5",
|
|
57
|
+
"purple-500": "#9b7ce8",
|
|
58
|
+
"purple-600": "#7d5dd4",
|
|
59
|
+
"purple-700": "#6344b8",
|
|
60
|
+
"purple-800": "#4d3390",
|
|
61
|
+
"purple-900": "#2d1a51",
|
|
62
|
+
"teal-50": "#f0fdf9",
|
|
63
|
+
"teal-100": "#eafff6",
|
|
64
|
+
"teal-200": "#d1f9ea",
|
|
65
|
+
"teal-300": "#b4ffe2",
|
|
66
|
+
"teal-400": "#91e0bf",
|
|
67
|
+
"teal-500": "#6dd4a8",
|
|
68
|
+
"teal-600": "#44c38e",
|
|
69
|
+
"teal-700": "#2ca572",
|
|
70
|
+
"teal-800": "#1d7a54",
|
|
71
|
+
"teal-900": "#0d5034",
|
|
72
|
+
"orange-50": "#fff8f3",
|
|
73
|
+
"orange-100": "#fff0ec",
|
|
74
|
+
"orange-200": "#ffe5d9",
|
|
75
|
+
"orange-300": "#ffdabf",
|
|
76
|
+
"orange-400": "#ffc199",
|
|
77
|
+
"orange-500": "#f5967e",
|
|
78
|
+
"orange-600": "#f07254",
|
|
79
|
+
"orange-700": "#de5837",
|
|
80
|
+
"orange-800": "#b8422a",
|
|
81
|
+
"orange-900": "#892f19",
|
|
82
|
+
"grey-50": "#fafafa",
|
|
83
|
+
"grey-100": "#f2f2f2",
|
|
84
|
+
"grey-200": "#efefef",
|
|
85
|
+
"grey-300": "#e6e6e6",
|
|
86
|
+
"grey-400": "#b7bec6",
|
|
87
|
+
"grey-500": "#98a1ac",
|
|
88
|
+
"grey-600": "#838990",
|
|
89
|
+
"grey-700": "#566f8f",
|
|
90
|
+
"grey-800": "#3d4f66",
|
|
91
|
+
"grey-900": "#213856",
|
|
92
|
+
"grey-white": "#ffffff",
|
|
93
|
+
"beige-50": "#fffbfb",
|
|
94
|
+
"beige-100": "#fff8f8",
|
|
95
|
+
"beige-200": "#ffeeed",
|
|
96
|
+
"beige-300": "#ffe0df",
|
|
97
|
+
"beige-400": "#f7cccb",
|
|
98
|
+
"beige-500": "#e5aba9",
|
|
99
|
+
"beige-600": "#d18a88",
|
|
100
|
+
"beige-700": "#b56967",
|
|
101
|
+
"beige-800": "#8f5251",
|
|
102
|
+
"beige-900": "#5f3e3d",
|
|
103
|
+
"sand-50": "#fffefe",
|
|
104
|
+
"sand-100": "#fffcfb",
|
|
105
|
+
"sand-200": "#fffbf8",
|
|
106
|
+
"sand-300": "#fffaf3",
|
|
107
|
+
"sand-400": "#fff4e6",
|
|
108
|
+
"sand-500": "#ffe9d1",
|
|
109
|
+
"sand-600": "#f5d4a8",
|
|
110
|
+
"sand-700": "#d9a96e",
|
|
111
|
+
"sand-800": "#a88353",
|
|
112
|
+
"sand-900": "#7e6440",
|
|
113
|
+
"shadow-2": "rgba(0, 0, 0, 0.02)",
|
|
114
|
+
"shadow-4": "rgba(0, 0, 0, 0.04)",
|
|
115
|
+
"shadow-6": "rgba(0, 0, 0, 0.06)",
|
|
116
|
+
"shadow-8": "rgba(0, 0, 0, 0.08)",
|
|
117
|
+
"core-bg-main-primary": "#ffffff",
|
|
118
|
+
"core-bg-main-secondary": "#fafafa",
|
|
119
|
+
"core-bg-main-tertiary": "#f2f2f2",
|
|
120
|
+
"core-bg-main-invert-primary": "#213856",
|
|
121
|
+
"core-bg-main-invert-secondary": "#566f8f",
|
|
122
|
+
"core-bg-main-invert-tertiary": "#b7bec6",
|
|
123
|
+
"core-bg-functional-disabled": "#f2f2f2",
|
|
124
|
+
"core-bg-functional-invert-success": "#f0fdf0",
|
|
125
|
+
"core-bg-functional-invert-critical": "#fff5f5",
|
|
126
|
+
"core-bg-functional-invert-info": "#f5f8ff",
|
|
127
|
+
"core-bg-functional-invert-warning": "#fffef5",
|
|
128
|
+
"core-bg-specific-highlight-text": "#e5fce5",
|
|
129
|
+
"core-bg-specific-tags-neutral": "#f2f2f2",
|
|
130
|
+
"core-text-main-primary": "#213856",
|
|
131
|
+
"core-text-main-secondary": "#566f8f",
|
|
132
|
+
"core-text-main-tertiary": "#98a1ac",
|
|
133
|
+
"core-text-main-invert-primary": "#ffffff",
|
|
134
|
+
"core-text-main-invert-secondary": "#f2f2f2",
|
|
135
|
+
"core-text-main-invert-tertiary": "#efefef",
|
|
136
|
+
"core-text-functional-placeholder": "#98a1ac",
|
|
137
|
+
"core-text-functional-disabled": "#b7bec6",
|
|
138
|
+
"core-text-functional-disabled-invert": "#ffffff",
|
|
139
|
+
"core-text-functional-success": "#31c52e",
|
|
140
|
+
"core-text-functional-critical": "#ec4343",
|
|
141
|
+
"core-text-functional-info": "#316bff",
|
|
142
|
+
"core-text-functional-warning": "#dfb009",
|
|
143
|
+
"core-border-main-primary": "#efefef",
|
|
144
|
+
"core-border-main-secondary": "#e6e6e6",
|
|
145
|
+
"core-border-main-invert-primary": "#213856",
|
|
146
|
+
"core-border-main-invert-secondary": "#3d4f66",
|
|
147
|
+
"core-border-functional-success": "#31c52e",
|
|
148
|
+
"core-border-functional-critical": "#ec4343",
|
|
149
|
+
"core-border-functional-info": "#316bff",
|
|
150
|
+
"core-border-functional-warning": "#dfb009",
|
|
151
|
+
"interactive-bg-primary-dark-default": "#316bff",
|
|
152
|
+
"interactive-bg-primary-dark-hover": "#1f5eff",
|
|
153
|
+
"interactive-bg-primary-dark-pressed": "#134cdd",
|
|
154
|
+
"interactive-bg-primary-light-default": "#ffffff",
|
|
155
|
+
"interactive-bg-primary-light-hover": "#f5f8ff",
|
|
156
|
+
"interactive-bg-primary-light-pressed": "#c7dcff",
|
|
157
|
+
"interactive-bg-dark-default": "#213856",
|
|
158
|
+
"interactive-bg-dark-hover": "#3d4f66",
|
|
159
|
+
"interactive-bg-dark-pressed": "#566f8f",
|
|
160
|
+
"interactive-bg-light-default": "#ffffff",
|
|
161
|
+
"interactive-bg-light-hover": "#f2f2f2",
|
|
162
|
+
"interactive-bg-light-pressed": "#efefef",
|
|
163
|
+
"interactive-bg-white-default": "#ffffff",
|
|
164
|
+
"interactive-bg-white-hover": "#fafafa",
|
|
165
|
+
"interactive-bg-white-pressed": "#f2f2f2",
|
|
166
|
+
"interactive-bg-critical-dark-default": "#ec4343",
|
|
167
|
+
"interactive-bg-critical-dark-hover": "#d92828",
|
|
168
|
+
"interactive-bg-critical-dark-pressed": "#be0723",
|
|
169
|
+
"interactive-bg-critical-light-default": "#ffffff",
|
|
170
|
+
"interactive-bg-critical-light-hover": "#ffe7e2",
|
|
171
|
+
"interactive-bg-critical-light-pressed": "#ffc9c9",
|
|
172
|
+
"interactive-bg-success-dark-default": "#31c52e",
|
|
173
|
+
"interactive-bg-success-dark-hover": "#1fb01c",
|
|
174
|
+
"interactive-bg-success-dark-pressed": "#009e00",
|
|
175
|
+
"interactive-bg-success-light-default": "#ffffff",
|
|
176
|
+
"interactive-bg-success-light-hover": "#f0fdf0",
|
|
177
|
+
"interactive-bg-success-light-pressed": "#e5fce5",
|
|
178
|
+
"interactive-bg-warning-dark-default": "#f5ca3d",
|
|
179
|
+
"interactive-bg-warning-dark-hover": "#dfb009",
|
|
180
|
+
"interactive-bg-warning-dark-pressed": "#d9aa00",
|
|
181
|
+
"interactive-bg-warning-light-default": "#ffffff",
|
|
182
|
+
"interactive-bg-warning-light-hover": "#fff8d3",
|
|
183
|
+
"interactive-bg-warning-light-pressed": "#fff0a7",
|
|
184
|
+
"interactive-text-neutral-dark-default": "#3d4f66",
|
|
185
|
+
"interactive-text-neutral-dark-hover": "#213856",
|
|
186
|
+
"interactive-text-neutral-dark-pressed": "#566f8f",
|
|
187
|
+
"interactive-text-neutral-light-default": "#ffffff",
|
|
188
|
+
"interactive-text-neutral-light-hover": "#f2f2f2",
|
|
189
|
+
"interactive-text-neutral-light-pressed": "#efefef",
|
|
190
|
+
"interactive-text-primary-dark-default": "#316bff",
|
|
191
|
+
"interactive-text-primary-dark-hover": "#1f5eff",
|
|
192
|
+
"interactive-text-primary-dark-pressed": "#134cdd",
|
|
193
|
+
"interactive-text-primary-light-default": "#ffffff",
|
|
194
|
+
"interactive-text-primary-light-hover": "#e0ebff",
|
|
195
|
+
"interactive-text-primary-light-pressed": "#c7dcff",
|
|
196
|
+
"interactive-text-white-default": "#ffffff",
|
|
197
|
+
"interactive-text-white-hover": "#fafafa",
|
|
198
|
+
"interactive-text-white-pressed": "#f2f2f2",
|
|
199
|
+
"interactive-text-critical-dark-default": "#ec4343",
|
|
200
|
+
"interactive-text-critical-dark-hover": "#d92828",
|
|
201
|
+
"interactive-text-critical-dark-pressed": "#be0723",
|
|
202
|
+
"interactive-text-critical-light-default": "#ffffff",
|
|
203
|
+
"interactive-text-critical-light-hover": "#ffe7e2",
|
|
204
|
+
"interactive-text-critical-light-pressed": "#ffc9c9",
|
|
205
|
+
"interactive-text-success-dark-default": "#31c52e",
|
|
206
|
+
"interactive-text-success-dark-hover": "#1fb01c",
|
|
207
|
+
"interactive-text-success-dark-pressed": "#009e00",
|
|
208
|
+
"interactive-text-success-light-default": "#ffffff",
|
|
209
|
+
"interactive-text-success-light-hover": "#f0fdf0",
|
|
210
|
+
"interactive-text-success-light-pressed": "#e5fce5",
|
|
211
|
+
"interactive-text-warning-dark-default": "#f5ca3d",
|
|
212
|
+
"interactive-text-warning-dark-hover": "#dfb009",
|
|
213
|
+
"interactive-text-warning-dark-pressed": "#d9aa00",
|
|
214
|
+
"interactive-text-warning-light-default": "#ffffff",
|
|
215
|
+
"interactive-text-warning-light-hover": "#fff8d3",
|
|
216
|
+
"interactive-text-warning-light-pressed": "#fff0a7",
|
|
217
|
+
"interactive-border-neutral-dark-default": "#213856",
|
|
218
|
+
"interactive-border-neutral-dark-hover": "#3d4f66",
|
|
219
|
+
"interactive-border-neutral-dark-pressed": "#566f8f",
|
|
220
|
+
"interactive-border-neutral-light-default": "#ffffff",
|
|
221
|
+
"interactive-border-neutral-light-hover": "#f2f2f2",
|
|
222
|
+
"interactive-border-neutral-light-pressed": "#efefef",
|
|
223
|
+
"interactive-border-neutral-white-default": "#ffffff",
|
|
224
|
+
"interactive-border-neutral-white-hover": "#fafafa",
|
|
225
|
+
"interactive-border-neutral-white-pressed": "#f2f2f2",
|
|
226
|
+
"interactive-border-primary-dark-default": "#316bff",
|
|
227
|
+
"interactive-border-primary-dark-hover": "#1f5eff",
|
|
228
|
+
"interactive-border-primary-dark-pressed": "#134cdd",
|
|
229
|
+
"interactive-border-primary-light-default": "#ffffff",
|
|
230
|
+
"interactive-border-primary-light-hover": "#e0ebff",
|
|
231
|
+
"interactive-border-primary-light-pressed": "#c7dcff",
|
|
232
|
+
"interactive-border-critical-dark-default": "#ec4343",
|
|
233
|
+
"interactive-border-critical-dark-hover": "#d92828",
|
|
234
|
+
"interactive-border-critical-dark-pressed": "#be0723",
|
|
235
|
+
"interactive-border-critical-light-default": "#ffffff",
|
|
236
|
+
"interactive-border-critical-light-hover": "#ffe7e2",
|
|
237
|
+
"interactive-border-critical-light-pressed": "#ffc9c9",
|
|
238
|
+
"interactive-border-success-dark-default": "#31c52e",
|
|
239
|
+
"interactive-border-success-dark-hover": "#1fb01c",
|
|
240
|
+
"interactive-border-success-dark-pressed": "#009e00",
|
|
241
|
+
"interactive-border-success-light-default": "#ffffff",
|
|
242
|
+
"interactive-border-success-light-hover": "#f0fdf0",
|
|
243
|
+
"interactive-border-success-light-pressed": "#e5fce5",
|
|
244
|
+
"interactive-border-warning-dark-default": "#f5ca3d",
|
|
245
|
+
"interactive-border-warning-dark-hover": "#dfb009",
|
|
246
|
+
"interactive-border-warning-dark-pressed": "#d9aa00",
|
|
247
|
+
"interactive-border-warning-light-default": "#ffffff",
|
|
248
|
+
"interactive-border-warning-light-hover": "#fff8d3",
|
|
249
|
+
"interactive-border-warning-light-pressed": "#fff0a7",
|
|
250
|
+
"radius-none": "0",
|
|
251
|
+
"radius-2xs": "2px",
|
|
252
|
+
"radius-xs": "4px",
|
|
253
|
+
"radius-sm": "6px",
|
|
254
|
+
"radius-base": "8px",
|
|
255
|
+
"radius-md": "12px",
|
|
256
|
+
"radius-lg": "16px",
|
|
257
|
+
"radius-xl": "24px",
|
|
258
|
+
"radius-full": "9999px",
|
|
259
|
+
"spacing-none": "0",
|
|
260
|
+
"spacing-2xs": "2px",
|
|
261
|
+
"spacing-xs": "4px",
|
|
262
|
+
"spacing-sm": "6px",
|
|
263
|
+
"spacing-base": "8px",
|
|
264
|
+
"spacing-md": "12px",
|
|
265
|
+
"spacing-lg": "16px",
|
|
266
|
+
"spacing-xl": "24px",
|
|
267
|
+
"spacing-2xl": "32px",
|
|
268
|
+
"spacing-3xl": "40px",
|
|
269
|
+
"spacing-4xl": "48px",
|
|
270
|
+
"spacing-5xl": "56px",
|
|
271
|
+
"gap-none": "0",
|
|
272
|
+
"gap-2xs": "2px",
|
|
273
|
+
"gap-xs": "4px",
|
|
274
|
+
"gap-sm": "6px",
|
|
275
|
+
"gap-base": "8px",
|
|
276
|
+
"gap-md": "12px",
|
|
277
|
+
"gap-lg": "16px",
|
|
278
|
+
"gap-xl": "24px",
|
|
279
|
+
"gap-2xl": "32px",
|
|
280
|
+
"gap-3xl": "40px",
|
|
281
|
+
"gap-4xl": "48px",
|
|
282
|
+
"gap-5xl": "56px",
|
|
283
|
+
"stroke-none": "0",
|
|
284
|
+
"stroke-base": "1px",
|
|
285
|
+
"stroke-md": "2px",
|
|
286
|
+
"font-letter-spacing-none": "0",
|
|
287
|
+
"font-line-height-line-height-2xs": "14px",
|
|
288
|
+
"font-line-height-line-height-xs": "16px",
|
|
289
|
+
"font-line-height-line-height-sm": "20px",
|
|
290
|
+
"font-line-height-base": "24px",
|
|
291
|
+
"font-line-height-line-height-md": "28px",
|
|
292
|
+
"font-line-height-line-height-lg": "32px",
|
|
293
|
+
"font-size-size-xxs": "10px",
|
|
294
|
+
"font-size-size-xs": "12px",
|
|
295
|
+
"font-size-size-sm": "14px",
|
|
296
|
+
"font-size-base": "16px",
|
|
297
|
+
"font-size-size-md": "18px",
|
|
298
|
+
"font-size-size-lg": "20px",
|
|
299
|
+
"font-size-size-xl": "24px",
|
|
300
|
+
"font-weight-regular": "400",
|
|
301
|
+
"font-weight-medium": "500",
|
|
302
|
+
"font-weight-bold": "700",
|
|
303
|
+
"comp-avatar-fallback-bg": "#316bff",
|
|
304
|
+
"comp-avatar-fallback-text": "#ffffff",
|
|
305
|
+
"comp-badge-solid-primary-bg": "#316bff",
|
|
306
|
+
"comp-badge-solid-primary-text": "#ffffff",
|
|
307
|
+
"comp-badge-solid-success-bg": "#31c52e",
|
|
308
|
+
"comp-badge-solid-success-text": "#ffffff",
|
|
309
|
+
"comp-badge-solid-critical-bg": "#ec4343",
|
|
310
|
+
"comp-badge-solid-critical-text": "#ffffff",
|
|
311
|
+
"comp-badge-solid-warning-bg": "#f5ca3d",
|
|
312
|
+
"comp-badge-solid-warning-text": "#ffffff",
|
|
313
|
+
"comp-badge-solid-neutral-bg": "#566f8f",
|
|
314
|
+
"comp-badge-solid-neutral-text": "#ffffff",
|
|
315
|
+
"comp-badge-light-primary-bg": "#f5f8ff",
|
|
316
|
+
"comp-badge-light-primary-text": "#316bff",
|
|
317
|
+
"comp-badge-light-success-bg": "#f0fdf0",
|
|
318
|
+
"comp-badge-light-success-text": "#31c52e",
|
|
319
|
+
"comp-badge-light-critical-bg": "#fff5f5",
|
|
320
|
+
"comp-badge-light-critical-text": "#ec4343",
|
|
321
|
+
"comp-badge-light-warning-bg": "#fffef5",
|
|
322
|
+
"comp-badge-light-warning-text": "#dfb009",
|
|
323
|
+
"comp-badge-light-neutral-bg": "#f2f2f2",
|
|
324
|
+
"comp-badge-light-neutral-text": "#566f8f",
|
|
325
|
+
"comp-badge-outlined-primary-border": "#316bff",
|
|
326
|
+
"comp-badge-outlined-primary-text": "#316bff",
|
|
327
|
+
"comp-badge-outlined-success-border": "#31c52e",
|
|
328
|
+
"comp-badge-outlined-success-text": "#31c52e",
|
|
329
|
+
"comp-badge-outlined-critical-border": "#ec4343",
|
|
330
|
+
"comp-badge-outlined-critical-text": "#ec4343",
|
|
331
|
+
"comp-badge-outlined-warning-border": "#dfb009",
|
|
332
|
+
"comp-badge-outlined-warning-text": "#dfb009",
|
|
333
|
+
"comp-badge-outlined-neutral-border": "#3d4f66",
|
|
334
|
+
"comp-badge-outlined-neutral-text": "#566f8f",
|
|
335
|
+
"comp-browser-tab-border": "#efefef",
|
|
336
|
+
"comp-browser-tab-item-bg": "#ffffff",
|
|
337
|
+
"comp-browser-tab-item-border": "#efefef",
|
|
338
|
+
"comp-browser-tab-item-active-text": "#213856",
|
|
339
|
+
"comp-browser-tab-item-active-icon": "#213856",
|
|
340
|
+
"comp-browser-tab-item-inactive-text": "#98a1ac",
|
|
341
|
+
"comp-browser-tab-item-inactive-icon": "#98a1ac",
|
|
342
|
+
"comp-browser-tab-item-hover-icon": "#566f8f",
|
|
343
|
+
"comp-btn-solid-brand-bg-default": "#316bff",
|
|
344
|
+
"comp-btn-solid-brand-bg-hover": "#316bff",
|
|
345
|
+
"comp-btn-solid-brand-bg-pressed": "#1f5eff",
|
|
346
|
+
"comp-btn-solid-brand-bg-gradient-to-default": "#477bff",
|
|
347
|
+
"comp-btn-solid-brand-bg-gradient-to-hover": "#1f5eff",
|
|
348
|
+
"comp-btn-solid-brand-bg-gradient-to-pressed": "#134cdd",
|
|
349
|
+
"comp-btn-solid-brand-text-default": "#ffffff",
|
|
350
|
+
"comp-btn-solid-brand-text-hover": "#ffffff",
|
|
351
|
+
"comp-btn-solid-brand-text-pressed": "#ffffff",
|
|
352
|
+
"comp-btn-solid-brand-border-default": "#316bff",
|
|
353
|
+
"comp-btn-solid-brand-border-hover": "#316bff",
|
|
354
|
+
"comp-btn-solid-brand-border-pressed": "#134cdd",
|
|
355
|
+
"comp-btn-solid-brand-inner-border-default": "#5c8aff",
|
|
356
|
+
"comp-btn-solid-brand-inner-border-hover": "#5c8aff",
|
|
357
|
+
"comp-btn-solid-brand-inner-border-pressed": "#3d6be0",
|
|
358
|
+
"comp-btn-solid-alert-bg-default": "#ec4343",
|
|
359
|
+
"comp-btn-solid-alert-bg-hover": "#ec4343",
|
|
360
|
+
"comp-btn-solid-alert-bg-pressed": "#d92828",
|
|
361
|
+
"comp-btn-solid-alert-bg-gradient-to-default": "#ee5454",
|
|
362
|
+
"comp-btn-solid-alert-bg-gradient-to-hover": "#d92828",
|
|
363
|
+
"comp-btn-solid-alert-bg-gradient-to-pressed": "#be0723",
|
|
364
|
+
"comp-btn-solid-alert-text-default": "#ffffff",
|
|
365
|
+
"comp-btn-solid-alert-text-hover": "#ffffff",
|
|
366
|
+
"comp-btn-solid-alert-text-pressed": "#ffffff",
|
|
367
|
+
"comp-btn-solid-alert-border-default": "#ec4343",
|
|
368
|
+
"comp-btn-solid-alert-border-hover": "#ec4343",
|
|
369
|
+
"comp-btn-solid-alert-border-pressed": "#be0723",
|
|
370
|
+
"comp-btn-solid-alert-inner-border-default": "#f06666",
|
|
371
|
+
"comp-btn-solid-alert-inner-border-hover": "#f06666",
|
|
372
|
+
"comp-btn-solid-alert-inner-border-pressed": "#c83333",
|
|
373
|
+
"comp-btn-outlined-neutral-bg-default": "#fafafa",
|
|
374
|
+
"comp-btn-outlined-neutral-bg-hover": "#f2f2f2",
|
|
375
|
+
"comp-btn-outlined-neutral-bg-pressed": "#efefef",
|
|
376
|
+
"comp-btn-outlined-neutral-bg-gradient-to-default": "#ffffff",
|
|
377
|
+
"comp-btn-outlined-neutral-bg-gradient-to-hover": "#fafafa",
|
|
378
|
+
"comp-btn-outlined-neutral-bg-gradient-to-pressed": "#f2f2f2",
|
|
379
|
+
"comp-btn-outlined-neutral-text-default": "#213856",
|
|
380
|
+
"comp-btn-outlined-neutral-text-hover": "#213856",
|
|
381
|
+
"comp-btn-outlined-neutral-text-pressed": "#213856",
|
|
382
|
+
"comp-btn-outlined-neutral-border-default": "#efefef",
|
|
383
|
+
"comp-btn-outlined-neutral-border-hover": "#efefef",
|
|
384
|
+
"comp-btn-outlined-neutral-border-pressed": "#efefef",
|
|
385
|
+
"comp-btn-outlined-alert-bg-default": "#ffffff",
|
|
386
|
+
"comp-btn-outlined-alert-bg-hover": "#ffe7e2",
|
|
387
|
+
"comp-btn-outlined-alert-bg-pressed": "#ffc9c9",
|
|
388
|
+
"comp-btn-outlined-alert-text-default": "#ec4343",
|
|
389
|
+
"comp-btn-outlined-alert-text-hover": "#d92828",
|
|
390
|
+
"comp-btn-outlined-alert-text-pressed": "#be0723",
|
|
391
|
+
"comp-btn-outlined-alert-border-default": "#ec4343",
|
|
392
|
+
"comp-btn-outlined-alert-border-hover": "#ec4343",
|
|
393
|
+
"comp-btn-outlined-alert-border-pressed": "#be0723",
|
|
394
|
+
"comp-btn-ghost-brand-bg-default": "rgba(0, 0, 0, 0)",
|
|
395
|
+
"comp-btn-ghost-brand-bg-hover": "#f5f8ff",
|
|
396
|
+
"comp-btn-ghost-brand-bg-pressed": "#c7dcff",
|
|
397
|
+
"comp-btn-ghost-brand-text-default": "#316bff",
|
|
398
|
+
"comp-btn-ghost-brand-text-hover": "#1f5eff",
|
|
399
|
+
"comp-btn-ghost-brand-text-pressed": "#134cdd",
|
|
400
|
+
"comp-btn-ghost-brand-border-default": "rgba(0, 0, 0, 0)",
|
|
401
|
+
"comp-btn-ghost-brand-border-hover": "rgba(0, 0, 0, 0)",
|
|
402
|
+
"comp-btn-ghost-brand-border-pressed": "rgba(0, 0, 0, 0)",
|
|
403
|
+
"comp-btn-ghost-neutral-bg-default": "rgba(0, 0, 0, 0)",
|
|
404
|
+
"comp-btn-ghost-neutral-bg-hover": "#f2f2f2",
|
|
405
|
+
"comp-btn-ghost-neutral-bg-pressed": "#efefef",
|
|
406
|
+
"comp-btn-ghost-neutral-text-default": "#566f8f",
|
|
407
|
+
"comp-btn-ghost-neutral-text-hover": "#566f8f",
|
|
408
|
+
"comp-btn-ghost-neutral-text-pressed": "#566f8f",
|
|
409
|
+
"comp-btn-ghost-neutral-border-default": "rgba(0, 0, 0, 0)",
|
|
410
|
+
"comp-btn-ghost-neutral-border-hover": "rgba(0, 0, 0, 0)",
|
|
411
|
+
"comp-btn-ghost-neutral-border-pressed": "rgba(0, 0, 0, 0)",
|
|
412
|
+
"comp-btn-ghost-alert-bg-default": "rgba(0, 0, 0, 0)",
|
|
413
|
+
"comp-btn-ghost-alert-bg-hover": "#ffe7e2",
|
|
414
|
+
"comp-btn-ghost-alert-bg-pressed": "#ffc9c9",
|
|
415
|
+
"comp-btn-ghost-alert-text-default": "#ec4343",
|
|
416
|
+
"comp-btn-ghost-alert-text-hover": "#d92828",
|
|
417
|
+
"comp-btn-ghost-alert-text-pressed": "#be0723",
|
|
418
|
+
"comp-btn-ghost-alert-border-default": "rgba(0, 0, 0, 0)",
|
|
419
|
+
"comp-btn-ghost-alert-border-hover": "rgba(0, 0, 0, 0)",
|
|
420
|
+
"comp-btn-ghost-alert-border-pressed": "rgba(0, 0, 0, 0)",
|
|
421
|
+
"comp-btn-disabled-solid-bg": "#f2f2f2",
|
|
422
|
+
"comp-btn-disabled-solid-text": "#b7bec6",
|
|
423
|
+
"comp-btn-disabled-solid-border": "#f2f2f2",
|
|
424
|
+
"comp-btn-disabled-outlined-bg": "#f2f2f2",
|
|
425
|
+
"comp-btn-disabled-outlined-text": "#b7bec6",
|
|
426
|
+
"comp-btn-disabled-outlined-border": "#f2f2f2",
|
|
427
|
+
"comp-btn-disabled-ghost-bg": "rgba(0, 0, 0, 0)",
|
|
428
|
+
"comp-btn-disabled-ghost-text": "#b7bec6",
|
|
429
|
+
"comp-btn-disabled-ghost-border": "rgba(0, 0, 0, 0)",
|
|
430
|
+
"comp-checkbox-unchecked-bg": "#ffffff",
|
|
431
|
+
"comp-checkbox-unchecked-border-default": "#e6e6e6",
|
|
432
|
+
"comp-checkbox-unchecked-border-hover": "#1f5eff",
|
|
433
|
+
"comp-checkbox-unchecked-border-pressed": "#134cdd",
|
|
434
|
+
"comp-checkbox-checked-bg-default": "#316bff",
|
|
435
|
+
"comp-checkbox-checked-bg-hover": "#1f5eff",
|
|
436
|
+
"comp-checkbox-checked-bg-pressed": "#134cdd",
|
|
437
|
+
"comp-checkbox-checked-icon": "#ffffff",
|
|
438
|
+
"comp-checkbox-disabled-bg": "#efefef",
|
|
439
|
+
"comp-checkbox-disabled-border": "#e6e6e6",
|
|
440
|
+
"comp-checkbox-disabled-icon": "#b7bec6",
|
|
441
|
+
"comp-checkbox-label-default": "#213856",
|
|
442
|
+
"comp-checkbox-label-disabled": "#b7bec6",
|
|
443
|
+
"comp-dropdown-bg": "#ffffff",
|
|
444
|
+
"comp-dropdown-border": "#efefef",
|
|
445
|
+
"comp-dropdown-item-text": "#213856",
|
|
446
|
+
"comp-dropdown-item-secondary": "#566f8f",
|
|
447
|
+
"comp-dropdown-item-hover": "#fafafa",
|
|
448
|
+
"comp-dropdown-item-icon": "#566f8f",
|
|
449
|
+
"comp-dropdown-heading-text": "#98a1ac",
|
|
450
|
+
"comp-dropdown-clear-text": "#213856",
|
|
451
|
+
"comp-info-message-info-bg": "#f5f8ff",
|
|
452
|
+
"comp-info-message-info-icon": "#316bff",
|
|
453
|
+
"comp-info-message-success-bg": "#f0fdf0",
|
|
454
|
+
"comp-info-message-success-icon": "#31c52e",
|
|
455
|
+
"comp-info-message-alert-bg": "#fff5f5",
|
|
456
|
+
"comp-info-message-alert-icon": "#ec4343",
|
|
457
|
+
"comp-info-message-warning-bg": "#fffef5",
|
|
458
|
+
"comp-info-message-warning-icon": "#dfb009",
|
|
459
|
+
"comp-info-message-empty-bg": "#fafafa",
|
|
460
|
+
"comp-info-message-empty-icon": "#566f8f",
|
|
461
|
+
"comp-info-message-title": "#213856",
|
|
462
|
+
"comp-info-message-description": "#566f8f",
|
|
463
|
+
"comp-info-message-close": "#566f8f",
|
|
464
|
+
"comp-input-label-text": "#566f8f",
|
|
465
|
+
"comp-input-label-optional": "#98a1ac",
|
|
466
|
+
"comp-input-label-mandatory": "#ec4343",
|
|
467
|
+
"comp-input-label-icon": "#566f8f",
|
|
468
|
+
"comp-input-label-disabled": "#b7bec6",
|
|
469
|
+
"comp-link-neutral-text-default": "#3d4f66",
|
|
470
|
+
"comp-link-neutral-text-hover": "#213856",
|
|
471
|
+
"comp-link-neutral-text-pressed": "#566f8f",
|
|
472
|
+
"comp-link-brand-text-default": "#316bff",
|
|
473
|
+
"comp-link-brand-text-hover": "#1f5eff",
|
|
474
|
+
"comp-link-brand-text-pressed": "#134cdd",
|
|
475
|
+
"comp-link-alert-text-default": "#ec4343",
|
|
476
|
+
"comp-link-alert-text-hover": "#d92828",
|
|
477
|
+
"comp-link-alert-text-pressed": "#be0723",
|
|
478
|
+
"comp-link-success-text-default": "#31c52e",
|
|
479
|
+
"comp-link-success-text-hover": "#1fb01c",
|
|
480
|
+
"comp-link-success-text-pressed": "#009e00",
|
|
481
|
+
"comp-link-warning-text-default": "#f5ca3d",
|
|
482
|
+
"comp-link-warning-text-hover": "#dfb009",
|
|
483
|
+
"comp-link-warning-text-pressed": "#d9aa00",
|
|
484
|
+
"comp-link-disabled-text": "#b7bec6",
|
|
485
|
+
"comp-modal-bg": "#ffffff",
|
|
486
|
+
"comp-modal-border": "#efefef",
|
|
487
|
+
"comp-modal-overlay": "#213856",
|
|
488
|
+
"comp-modal-header-title": "#213856",
|
|
489
|
+
"comp-modal-header-description": "#566f8f",
|
|
490
|
+
"comp-modal-header-border": "#efefef",
|
|
491
|
+
"comp-modal-header-close": "#566f8f",
|
|
492
|
+
"comp-modal-footer-border": "#efefef",
|
|
493
|
+
"comp-modal-footer-text": "#566f8f",
|
|
494
|
+
"comp-modal-footer-icon": "#316bff",
|
|
495
|
+
"comp-search-bar-white-bg": "#ffffff",
|
|
496
|
+
"comp-search-bar-grey-bg": "#fafafa",
|
|
497
|
+
"comp-search-bar-border-default": "#efefef",
|
|
498
|
+
"comp-search-bar-border-hover": "#e6e6e6",
|
|
499
|
+
"comp-search-bar-border-active": "#316bff",
|
|
500
|
+
"comp-search-bar-icon": "#566f8f",
|
|
501
|
+
"comp-search-bar-placeholder": "#98a1ac",
|
|
502
|
+
"comp-search-bar-text": "#213856",
|
|
503
|
+
"comp-search-bar-clear": "#566f8f",
|
|
504
|
+
"comp-select-bg-default": "#fafafa",
|
|
505
|
+
"comp-select-bg-gradient-to": "#ffffff",
|
|
506
|
+
"comp-select-bg-hover": "#f2f2f2",
|
|
507
|
+
"comp-select-bg-error": "#ffffff",
|
|
508
|
+
"comp-select-bg-disabled": "#efefef",
|
|
509
|
+
"comp-select-border-default": "#efefef",
|
|
510
|
+
"comp-select-border-hover": "#e6e6e6",
|
|
511
|
+
"comp-select-border-error": "#ec4343",
|
|
512
|
+
"comp-select-border-disabled": "#efefef",
|
|
513
|
+
"comp-select-text-default": "#213856",
|
|
514
|
+
"comp-select-text-placeholder": "#98a1ac",
|
|
515
|
+
"comp-select-text-disabled": "#b7bec6",
|
|
516
|
+
"comp-select-text-multi": "#98a1ac",
|
|
517
|
+
"comp-select-icon": "#566f8f",
|
|
518
|
+
"comp-select-error-text": "#ec4343",
|
|
519
|
+
"comp-select-error-icon": "#ec4343",
|
|
520
|
+
"comp-sidebar-bg": "#ffffff",
|
|
521
|
+
"comp-sidebar-border": "#efefef",
|
|
522
|
+
"comp-sidebar-footer-bg": "#fafafa",
|
|
523
|
+
"comp-sidebar-item-default-icon": "#566f8f",
|
|
524
|
+
"comp-sidebar-item-default-text": "#566f8f",
|
|
525
|
+
"comp-sidebar-item-hover-bg": "#fafafa",
|
|
526
|
+
"comp-sidebar-item-hover-icon": "#566f8f",
|
|
527
|
+
"comp-sidebar-item-hover-text": "#566f8f",
|
|
528
|
+
"comp-sidebar-item-active-bg": "#f5f8ff",
|
|
529
|
+
"comp-sidebar-item-active-icon": "#316bff",
|
|
530
|
+
"comp-sidebar-item-active-text": "#213856",
|
|
531
|
+
"comp-sidebar-item-chevron": "#213856",
|
|
532
|
+
"comp-sidebar-heading-text": "#98a1ac",
|
|
533
|
+
"comp-switch-off-track-default": "#b7bec6",
|
|
534
|
+
"comp-switch-off-track-hover": "#98a1ac",
|
|
535
|
+
"comp-switch-off-track-disabled": "#e6e6e6",
|
|
536
|
+
"comp-switch-on-track-default": "#316bff",
|
|
537
|
+
"comp-switch-on-track-hover": "#1f5eff",
|
|
538
|
+
"comp-switch-on-track-disabled": "#c7dcff",
|
|
539
|
+
"comp-switch-thumb-bg": "#ffffff",
|
|
540
|
+
"comp-switch-thumb-disabled": "#ffffff",
|
|
541
|
+
"comp-switch-label-text": "#213856",
|
|
542
|
+
"comp-switch-label-disabled": "#b7bec6",
|
|
543
|
+
"comp-tab-border": "#efefef",
|
|
544
|
+
"comp-tab-item-default-text": "#98a1ac",
|
|
545
|
+
"comp-tab-item-hover-bg": "#fafafa",
|
|
546
|
+
"comp-tab-item-active-text": "#213856",
|
|
547
|
+
"comp-tab-item-active-bg": "#f2f2f2",
|
|
548
|
+
"comp-tab-item-active-border": "#213856",
|
|
549
|
+
"comp-table-bg": "#ffffff",
|
|
550
|
+
"comp-table-border": "#efefef",
|
|
551
|
+
"comp-table-head-bg-default": "#ffffff",
|
|
552
|
+
"comp-table-head-bg-hover": "#fafafa",
|
|
553
|
+
"comp-table-head-text": "#566f8f",
|
|
554
|
+
"comp-table-head-icon": "#566f8f",
|
|
555
|
+
"comp-table-row-bg-default": "#ffffff",
|
|
556
|
+
"comp-table-row-bg-hover": "#fafafa",
|
|
557
|
+
"comp-table-row-bg-selected": "#f5f8ff",
|
|
558
|
+
"comp-table-cell-text-primary": "#213856",
|
|
559
|
+
"comp-table-cell-text-secondary": "#566f8f",
|
|
560
|
+
"comp-tag-brand-bg": "#f5f8ff",
|
|
561
|
+
"comp-tag-brand-text": "#316bff",
|
|
562
|
+
"comp-tag-neutral-bg": "#f2f2f2",
|
|
563
|
+
"comp-tag-neutral-text": "#566f8f",
|
|
564
|
+
"comp-text-input-bg-default": "#ffffff",
|
|
565
|
+
"comp-text-input-bg-disabled": "#f2f2f2",
|
|
566
|
+
"comp-text-input-border-default": "#efefef",
|
|
567
|
+
"comp-text-input-border-hover": "#316bff",
|
|
568
|
+
"comp-text-input-border-success": "#31c52e",
|
|
569
|
+
"comp-text-input-border-error": "#ec4343",
|
|
570
|
+
"comp-text-input-border-disabled": "#efefef",
|
|
571
|
+
"comp-text-input-text-default": "#213856",
|
|
572
|
+
"comp-text-input-text-placeholder": "#98a1ac",
|
|
573
|
+
"comp-text-input-text-disabled": "#b7bec6",
|
|
574
|
+
"comp-text-input-icon": "#566f8f",
|
|
575
|
+
"comp-text-input-button-bg": "#fafafa",
|
|
576
|
+
"comp-text-input-button-gradient-to": "#ffffff",
|
|
577
|
+
"comp-text-input-button-bg-hover": "#f2f2f2",
|
|
578
|
+
"comp-text-input-button-border": "#efefef",
|
|
579
|
+
"comp-text-input-error-text": "#ec4343",
|
|
580
|
+
"comp-text-input-error-icon": "#ec4343",
|
|
581
|
+
"comp-textarea-bg-default": "#ffffff",
|
|
582
|
+
"comp-textarea-bg-disabled": "#f2f2f2",
|
|
583
|
+
"comp-textarea-border-default": "#efefef",
|
|
584
|
+
"comp-textarea-border-hover": "#316bff",
|
|
585
|
+
"comp-textarea-border-success": "#31c52e",
|
|
586
|
+
"comp-textarea-border-error": "#ec4343",
|
|
587
|
+
"comp-textarea-border-disabled": "#efefef",
|
|
588
|
+
"comp-textarea-text-default": "#213856",
|
|
589
|
+
"comp-textarea-text-placeholder": "#98a1ac",
|
|
590
|
+
"comp-textarea-text-disabled": "#b7bec6",
|
|
591
|
+
"comp-textarea-char-limit": "#566f8f",
|
|
592
|
+
"comp-textarea-handle-default": "#3d4f66",
|
|
593
|
+
"comp-textarea-handle-disabled": "#b7bec6",
|
|
594
|
+
"comp-textarea-error-text": "#ec4343",
|
|
595
|
+
"comp-textarea-error-icon": "#ec4343",
|
|
596
|
+
"comp-toast-info-bg": "#f5f8ff",
|
|
597
|
+
"comp-toast-info-icon": "#316bff",
|
|
598
|
+
"comp-toast-success-bg": "#f0fdf0",
|
|
599
|
+
"comp-toast-success-icon": "#31c52e",
|
|
600
|
+
"comp-toast-alert-bg": "#fff5f5",
|
|
601
|
+
"comp-toast-alert-icon": "#ec4343",
|
|
602
|
+
"comp-toast-warning-bg": "#fffef5",
|
|
603
|
+
"comp-toast-warning-icon": "#dfb009",
|
|
604
|
+
"comp-toast-border": "#efefef",
|
|
605
|
+
"comp-toast-title": "#213856",
|
|
606
|
+
"comp-toast-subtitle": "#566f8f",
|
|
607
|
+
"comp-toast-close": "#566f8f",
|
|
608
|
+
"comp-tooltip-default-bg": "#213856",
|
|
609
|
+
"comp-tooltip-default-text": "#ffffff",
|
|
610
|
+
"comp-tooltip-default-icon": "#566f8f",
|
|
611
|
+
"comp-tooltip-invert-bg": "#fafafa",
|
|
612
|
+
"comp-tooltip-invert-text": "#213856",
|
|
613
|
+
"comp-tooltip-invert-border": "#e6e6e6",
|
|
614
|
+
"comp-tooltip-invert-icon": "#566f8f",
|
|
615
|
+
"comp-user-menu-bg": "#ffffff",
|
|
616
|
+
"comp-user-menu-border": "#efefef",
|
|
617
|
+
"comp-user-menu-name": "#213856",
|
|
618
|
+
"comp-user-menu-subtitle": "#566f8f"
|
|
619
|
+
} as const;
|
|
620
|
+
|
|
621
|
+
export type TokenName = keyof typeof tokens;
|
|
622
|
+
export type TokenValue = (typeof tokens)[TokenName];
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@l3mpire/tokens",
|
|
3
|
+
"version": "0.5.3",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"registry": "https://registry.npmjs.org",
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/l3mpire/lemds-product-design.git",
|
|
11
|
+
"directory": "packages/tokens"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./dist/ts/tokens.ts",
|
|
15
|
+
"./css": "./dist/css/tokens.css",
|
|
16
|
+
"./css/*": "./dist/css/*.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"style-dictionary": "^4",
|
|
23
|
+
"tsx": "^4",
|
|
24
|
+
"typescript": "^5"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsx style-dictionary.config.ts",
|
|
28
|
+
"clean": "rm -rf dist .turbo"
|
|
29
|
+
}
|
|
30
|
+
}
|