@bcc-code/design-tokens 1.0.10 → 1.0.12
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 +45 -62
- package/dist/tailwind.css +0 -401
- package/package.json +2 -2
- package/dist/tailwind.config.js +0 -198
package/README.md
CHANGED
|
@@ -1,47 +1,18 @@
|
|
|
1
|
-
# @bcc-code/design-tokens
|
|
1
|
+
# @bcc-code/design-tokens - BCC Design Tokens
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
5
|
[](https://github.com/bcc-code/design-tokens/actions/workflows/publish.yml)
|
|
6
6
|
|
|
7
|
-
A scoped design token package with light and dark themes
|
|
7
|
+
A scoped design token package with light and dark themes for BCC projects.
|
|
8
8
|
|
|
9
|
-
##
|
|
10
|
-
|
|
11
|
-
- ✅ Light and dark theme support
|
|
12
|
-
- ✅ Zero-config CSS variables (primitives + semantic)
|
|
13
|
-
- ✅ Available via NPM and CDN
|
|
14
|
-
- ✅ Built-in PrimeVue `aura`-compatible preset
|
|
15
|
-
- ✅ Works in WordPress, Vue, and vanilla HTML
|
|
16
|
-
- ✅ Scalable architecture for future token sets and themes
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## 📦 Installation & Usage
|
|
21
|
-
|
|
22
|
-
### ▶️ Install via NPM (for Vue/PrimeVue)
|
|
9
|
+
## 📦 Installation
|
|
23
10
|
|
|
24
11
|
```bash
|
|
25
12
|
npm install @bcc-code/design-tokens@latest
|
|
26
13
|
```
|
|
27
14
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
```js
|
|
31
|
-
import "@bcc-code/design-tokens/variables.css"; // Injects all CSS variables
|
|
32
|
-
import { BCCPrimeVuePreset } from "@bcc-code/design-tokens/primevue-preset";
|
|
33
|
-
|
|
34
|
-
app.use(PrimeVue, {
|
|
35
|
-
theme: {
|
|
36
|
-
preset: BCCPrimeVuePreset,
|
|
37
|
-
options: {
|
|
38
|
-
darkModeSelector: ".dark-mode", // You toggle this class manually or via script
|
|
39
|
-
},
|
|
40
|
-
},
|
|
41
|
-
});
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### 🌐 Use via CDN (WordPress / HTML / No Build Tools)
|
|
15
|
+
Or via CDN:
|
|
45
16
|
|
|
46
17
|
```html
|
|
47
18
|
<link
|
|
@@ -50,54 +21,66 @@ app.use(PrimeVue, {
|
|
|
50
21
|
/>
|
|
51
22
|
```
|
|
52
23
|
|
|
53
|
-
|
|
24
|
+
## 🎯 Usage Scenarios
|
|
25
|
+
|
|
26
|
+
### WordPress / HTML Projects
|
|
27
|
+
|
|
28
|
+
1. **Basic CSS Variables**
|
|
54
29
|
|
|
55
30
|
```html
|
|
56
|
-
<
|
|
31
|
+
<link
|
|
32
|
+
rel="stylesheet"
|
|
33
|
+
href="https://cdn.jsdelivr.net/npm/@bcc-code/design-tokens@latest/dist/variables.css"
|
|
34
|
+
/>
|
|
57
35
|
```
|
|
58
36
|
|
|
59
|
-
|
|
37
|
+
2. **With Tailwind CSS**
|
|
60
38
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
tokens/
|
|
65
|
-
|
|
66
|
-
build/ # Intermediate Style Dictionary outputs
|
|
67
|
-
dist/ # Final NPM/CDN-ready files
|
|
68
|
-
├── variables.css # Combined light + dark + primitives CSS variables
|
|
69
|
-
└── primevue-preset.js # PrimeVue theme preset (Aura-compatible)
|
|
39
|
+
```html
|
|
40
|
+
<link
|
|
41
|
+
rel="stylesheet"
|
|
42
|
+
href="https://cdn.jsdelivr.net/npm/@bcc-code/design-tokens@latest/dist/tailwind.css"
|
|
43
|
+
/>
|
|
70
44
|
```
|
|
71
45
|
|
|
72
|
-
###
|
|
46
|
+
### Vue / PrimeVue Projects
|
|
73
47
|
|
|
74
|
-
1.
|
|
48
|
+
1. **With BCC PrimeVue Preset**
|
|
75
49
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
50
|
+
```js
|
|
51
|
+
import "@bcc-code/design-tokens/variables.css";
|
|
52
|
+
import { BCCPrimeVuePreset } from "@bcc-code/design-tokens/primevue-preset";
|
|
79
53
|
|
|
80
|
-
|
|
81
|
-
|
|
54
|
+
app.use(PrimeVue, {
|
|
55
|
+
theme: {
|
|
56
|
+
preset: BCCPrimeVuePreset,
|
|
57
|
+
},
|
|
58
|
+
});
|
|
59
|
+
```
|
|
82
60
|
|
|
83
|
-
|
|
61
|
+
2. **With Tailwind CSS**
|
|
84
62
|
|
|
85
|
-
```
|
|
86
|
-
|
|
63
|
+
```js
|
|
64
|
+
import "@bcc-code/design-tokens/tailwind.css";
|
|
87
65
|
```
|
|
88
66
|
|
|
89
|
-
|
|
67
|
+
3. **With Both**
|
|
90
68
|
|
|
91
|
-
|
|
69
|
+
```js
|
|
70
|
+
import "@bcc-code/design-tokens/tailwind.css";
|
|
71
|
+
import { BCCPrimeVuePreset } from "@bcc-code/design-tokens/primevue-preset";
|
|
92
72
|
|
|
93
|
-
|
|
73
|
+
app.use(PrimeVue, {
|
|
74
|
+
theme: {
|
|
75
|
+
preset: BCCPrimeVuePreset,
|
|
76
|
+
},
|
|
77
|
+
});
|
|
78
|
+
```
|
|
94
79
|
|
|
95
|
-
|
|
80
|
+
## 🤝 Contributing
|
|
96
81
|
|
|
97
|
-
|
|
82
|
+
Want to contribute to this project? Check out our [Contributing Guide](CONTRIBUTING.md) for details on how to get started.
|
|
98
83
|
|
|
99
84
|
### 📄 License
|
|
100
85
|
|
|
101
86
|
MIT
|
|
102
|
-
|
|
103
|
-
Note: All CDN and NPM imports use the `@bcc-code/design-tokens` scope. If you fork this project or publish your own, replace all references accordingly.
|
package/dist/tailwind.css
CHANGED
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
--radius-sm: 0.25rem;
|
|
11
11
|
--radius-xl: 2rem;
|
|
12
12
|
--radius-xs: 0.125rem;
|
|
13
|
-
--border-width-md: 2px;
|
|
14
|
-
--border-width-sm: 1px;
|
|
15
13
|
--color-bcc-100: #e6f2f1;
|
|
16
14
|
--color-bcc-1000: #002320;
|
|
17
15
|
--color-bcc-200: #d0e3e1;
|
|
@@ -136,20 +134,6 @@
|
|
|
136
134
|
--color-teal-700: #377483;
|
|
137
135
|
--color-teal-800: #32606c;
|
|
138
136
|
--color-teal-900: #2f505b;
|
|
139
|
-
--spacing-0: 0;
|
|
140
|
-
--spacing-100: 0.5rem;
|
|
141
|
-
--spacing-1000: 80px;
|
|
142
|
-
--spacing-150: 0.75rem;
|
|
143
|
-
--spacing-200: 1rem;
|
|
144
|
-
--spacing-25: 0.125rem;
|
|
145
|
-
--spacing-250: 1.25rem;
|
|
146
|
-
--spacing-300: 1.5rem;
|
|
147
|
-
--spacing-400: 2rem;
|
|
148
|
-
--spacing-50: 0.25rem;
|
|
149
|
-
--spacing-500: 2.5rem;
|
|
150
|
-
--spacing-600: 3rem;
|
|
151
|
-
--spacing-75: 0.375rem;
|
|
152
|
-
--spacing-800: 4rem;
|
|
153
137
|
--text-2xl: 2rem;
|
|
154
138
|
--text-3xl: 2.25rem;
|
|
155
139
|
--text-4xl: 3rem;
|
|
@@ -158,131 +142,7 @@
|
|
|
158
142
|
--text-sm: 0.875rem;
|
|
159
143
|
--text-xl: 1.5rem;
|
|
160
144
|
--text-xs: 0.75rem;
|
|
161
|
-
--font-weight-bold-700: var(--fontweights-archivo-bold);
|
|
162
|
-
--font-weight-medium-500: var(--fontweights-archivo-medium);
|
|
163
|
-
--font-weight-regular-400: var(--fontweights-archivo-regular);
|
|
164
|
-
--fontfamilies-archivo: Archivo;
|
|
165
|
-
--spacing-lg: 2rem;
|
|
166
|
-
--spacing-md: 1.5rem;
|
|
167
|
-
--spacing-sm: 1.25rem;
|
|
168
|
-
--spacing-xl: 3rem;
|
|
169
|
-
--spacing-xs: 1rem;
|
|
170
|
-
--leading-text-2xl-leading-none: 2rem;
|
|
171
|
-
--leading-text-2xl-leading-tight: 2.25rem;
|
|
172
|
-
--leading-text-3xl-leading-none: 2.25rem;
|
|
173
|
-
--leading-text-3xl-leading-tight: 2.5rem;
|
|
174
|
-
--leading-text-4xl-leading-none: 3rem;
|
|
175
|
-
--leading-text-4xl-leading-tight: 3.25rem;
|
|
176
|
-
--leading-text-lg-leading-none: 1.25rem;
|
|
177
|
-
--leading-text-lg-leading-tight: 1.5rem;
|
|
178
|
-
--leading-text-md-leading-none: 1rem;
|
|
179
|
-
--leading-text-md-leading-normal: 1.5rem;
|
|
180
|
-
--leading-text-md-leading-tight: 1.25;
|
|
181
|
-
--leading-text-sm-leading-none: 0.875rem;
|
|
182
|
-
--leading-text-sm-leading-normal: 1.25rem;
|
|
183
|
-
--leading-text-xl-leading-none: 1.5rem;
|
|
184
|
-
--leading-text-xl-leading-tight: 1.75;
|
|
185
|
-
--leading-text-xs-leading-none: 0.75rem;
|
|
186
|
-
--leading-text-xs-leading-normal: 1.25rem;
|
|
187
|
-
--spacing-0: var(--dimension-space-0);
|
|
188
|
-
--text-decoration-line-through: line-through;
|
|
189
|
-
--text-decoration-none: none;
|
|
190
|
-
--text-decoration-underline: underline;
|
|
191
|
-
--text-indent-0: var(--dimension-space-0);
|
|
192
|
-
--text-transform-capitalize: capitalize;
|
|
193
|
-
--text-transform-lowercase: lowercase;
|
|
194
|
-
--text-transform-none: none;
|
|
195
|
-
--text-transform-uppercase: uppercase;
|
|
196
|
-
--tracking-normal: 0;
|
|
197
|
-
--tracking-tight: -0.02em;
|
|
198
|
-
--tracking-tighter: -0.04em;
|
|
199
|
-
--tracking-wide: 0.04em;
|
|
200
145
|
|
|
201
|
-
--body-base-bold-fontfamily: var(--fontfamilies-archivo);
|
|
202
|
-
--body-base-bold-fontsize: var(--font-size-text-md);
|
|
203
|
-
--body-base-bold-fontweight: var(--font-weight-bold-700);
|
|
204
|
-
--body-base-bold-letterspacing: var(--tracking-normal);
|
|
205
|
-
--body-base-bold-lineheight: var(--line-height-text-md-leading-normal);
|
|
206
|
-
--body-base-bold-paragraphindent: var(--text-indent-0);
|
|
207
|
-
--body-base-bold-paragraphspacing: var(--space-between-0);
|
|
208
|
-
--body-base-bold-textcase: var(--text-transform-none);
|
|
209
|
-
--body-base-bold-textdecoration: var(--text-decoration-none);
|
|
210
|
-
--body-base-medium-fontfamily: var(--fontfamilies-archivo);
|
|
211
|
-
--body-base-medium-fontsize: var(--font-size-text-md);
|
|
212
|
-
--body-base-medium-fontweight: var(--font-weight-medium-500);
|
|
213
|
-
--body-base-medium-letterspacing: var(--tracking-normal);
|
|
214
|
-
--body-base-medium-lineheight: var(--line-height-text-md-leading-normal);
|
|
215
|
-
--body-base-medium-paragraphindent: var(--text-indent-0);
|
|
216
|
-
--body-base-medium-paragraphspacing: var(--space-between-0);
|
|
217
|
-
--body-base-medium-textcase: var(--text-transform-none);
|
|
218
|
-
--body-base-medium-textdecoration: var(--text-decoration-none);
|
|
219
|
-
--body-base-regular-fontfamily: var(--fontfamilies-archivo);
|
|
220
|
-
--body-base-regular-fontsize: var(--font-size-text-md);
|
|
221
|
-
--body-base-regular-fontweight: var(--font-weight-regular-400);
|
|
222
|
-
--body-base-regular-letterspacing: var(--tracking-normal);
|
|
223
|
-
--body-base-regular-lineheight: var(--line-height-text-md-leading-normal);
|
|
224
|
-
--body-base-regular-paragraphindent: var(--text-indent-0);
|
|
225
|
-
--body-base-regular-paragraphspacing: var(--space-between-0);
|
|
226
|
-
--body-base-regular-textcase: var(--text-transform-none);
|
|
227
|
-
--body-base-regular-textdecoration: var(--text-decoration-none);
|
|
228
|
-
--body-sm-bold-fontfamily: var(--fontfamilies-archivo);
|
|
229
|
-
--body-sm-bold-fontsize: var(--font-size-text-sm);
|
|
230
|
-
--body-sm-bold-fontweight: var(--font-weight-bold-700);
|
|
231
|
-
--body-sm-bold-letterspacing: var(--tracking-normal);
|
|
232
|
-
--body-sm-bold-lineheight: var(--line-height-text-sm-leading-normal);
|
|
233
|
-
--body-sm-bold-paragraphindent: var(--text-indent-0);
|
|
234
|
-
--body-sm-bold-paragraphspacing: var(--space-between-0);
|
|
235
|
-
--body-sm-bold-textcase: var(--text-transform-none);
|
|
236
|
-
--body-sm-bold-textdecoration: var(--text-decoration-none);
|
|
237
|
-
--body-sm-medium-fontfamily: var(--fontfamilies-archivo);
|
|
238
|
-
--body-sm-medium-fontsize: var(--font-size-text-sm);
|
|
239
|
-
--body-sm-medium-fontweight: var(--font-weight-medium-500);
|
|
240
|
-
--body-sm-medium-letterspacing: var(--tracking-normal);
|
|
241
|
-
--body-sm-medium-lineheight: var(--line-height-text-sm-leading-normal);
|
|
242
|
-
--body-sm-medium-paragraphindent: var(--text-indent-0);
|
|
243
|
-
--body-sm-medium-paragraphspacing: var(--space-between-0);
|
|
244
|
-
--body-sm-medium-textcase: var(--text-transform-none);
|
|
245
|
-
--body-sm-medium-textdecoration: var(--text-decoration-none);
|
|
246
|
-
--body-sm-regular-fontfamily: var(--fontfamilies-archivo);
|
|
247
|
-
--body-sm-regular-fontsize: var(--font-size-text-sm);
|
|
248
|
-
--body-sm-regular-fontweight: var(--font-weight-regular-400);
|
|
249
|
-
--body-sm-regular-letterspacing: var(--tracking-normal);
|
|
250
|
-
--body-sm-regular-lineheight: var(--line-height-text-sm-leading-normal);
|
|
251
|
-
--body-sm-regular-paragraphindent: var(--text-indent-0);
|
|
252
|
-
--body-sm-regular-paragraphspacing: var(--space-between-0);
|
|
253
|
-
--body-sm-regular-textcase: var(--text-transform-none);
|
|
254
|
-
--body-sm-regular-textdecoration: var(--text-decoration-none);
|
|
255
|
-
--body-xs-bold-fontfamily: var(--fontfamilies-archivo);
|
|
256
|
-
--body-xs-bold-fontsize: var(--font-size-text-xs);
|
|
257
|
-
--body-xs-bold-fontweight: var(--font-weight-bold-700);
|
|
258
|
-
--body-xs-bold-letterspacing: var(--tracking-normal);
|
|
259
|
-
--body-xs-bold-lineheight: var(--line-height-text-xs-leading-normal);
|
|
260
|
-
--body-xs-bold-paragraphindent: var(--text-indent-0);
|
|
261
|
-
--body-xs-bold-paragraphspacing: var(--text-indent-0);
|
|
262
|
-
--body-xs-bold-textcase: var(--text-transform-none);
|
|
263
|
-
--body-xs-bold-textdecoration: var(--text-decoration-none);
|
|
264
|
-
--body-xs-medium-fontfamily: var(--fontfamilies-archivo);
|
|
265
|
-
--body-xs-medium-fontsize: var(--font-size-text-xs);
|
|
266
|
-
--body-xs-medium-fontweight: var(--font-weight-medium-500);
|
|
267
|
-
--body-xs-medium-letterspacing: var(--tracking-normal);
|
|
268
|
-
--body-xs-medium-lineheight: var(--line-height-text-xs-leading-normal);
|
|
269
|
-
--body-xs-medium-paragraphindent: var(--text-indent-0);
|
|
270
|
-
--body-xs-medium-paragraphspacing: var(--space-between-0);
|
|
271
|
-
--body-xs-medium-textcase: var(--text-transform-none);
|
|
272
|
-
--body-xs-medium-textdecoration: var(--text-decoration-none);
|
|
273
|
-
--body-xs-regular-fontfamily: var(--fontfamilies-archivo);
|
|
274
|
-
--body-xs-regular-fontsize: var(--font-size-text-xs);
|
|
275
|
-
--body-xs-regular-fontweight: var(--font-weight-regular-400);
|
|
276
|
-
--body-xs-regular-letterspacing: var(--tracking-normal);
|
|
277
|
-
--body-xs-regular-lineheight: var(--line-height-text-xs-leading-normal);
|
|
278
|
-
--body-xs-regular-paragraphindent: var(--text-indent-0);
|
|
279
|
-
--body-xs-regular-paragraphspacing: var(--space-between-0);
|
|
280
|
-
--body-xs-regular-textcase: var(--text-transform-none);
|
|
281
|
-
--body-xs-regular-textdecoration: var(--text-decoration-none);
|
|
282
|
-
--border-base-color: var(--color-border-tertiary);
|
|
283
|
-
--border-base-width: var(--border-width-sm);
|
|
284
|
-
--border-brand-color: var(--color-bcc-700);
|
|
285
|
-
--border-brand-width: var(--border-width-md);
|
|
286
146
|
--color-background-accent-blue-bold-default: var(--color-blue-800);
|
|
287
147
|
--color-background-accent-blue-bold-hover: #ffffff;
|
|
288
148
|
--color-background-accent-blue-bold-pressed: #ffffff;
|
|
@@ -514,182 +374,11 @@
|
|
|
514
374
|
--color-text-secondary: var(--color-neutral-600);
|
|
515
375
|
--color-text-success: var(--color-green-600);
|
|
516
376
|
--color-text-tertiary: var(--color-neutral-400);
|
|
517
|
-
--heading-2xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
518
|
-
--heading-2xl-bold-fontsize: var(--font-size-text-2xl);
|
|
519
|
-
--heading-2xl-bold-fontweight: var(--font-weight-bold-700);
|
|
520
|
-
--heading-2xl-bold-letterspacing: var(--tracking-normal);
|
|
521
|
-
--heading-2xl-bold-lineheight: var(--line-height-text-2xl-leading-tight);
|
|
522
|
-
--heading-2xl-bold-paragraphindent: var(--text-indent-0);
|
|
523
|
-
--heading-2xl-bold-paragraphspacing: var(--space-between-0);
|
|
524
|
-
--heading-2xl-bold-textcase: var(--text-transform-none);
|
|
525
|
-
--heading-2xl-bold-textdecoration: var(--text-decoration-none);
|
|
526
|
-
--heading-2xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
527
|
-
--heading-2xl-medium-fontsize: var(--font-size-text-2xl);
|
|
528
|
-
--heading-2xl-medium-fontweight: var(--font-weight-medium-500);
|
|
529
|
-
--heading-2xl-medium-letterspacing: var(--tracking-normal);
|
|
530
|
-
--heading-2xl-medium-lineheight: var(--line-height-text-2xl-leading-tight);
|
|
531
|
-
--heading-2xl-medium-paragraphindent: var(--text-indent-0);
|
|
532
|
-
--heading-2xl-medium-paragraphspacing: var(--space-between-0);
|
|
533
|
-
--heading-2xl-medium-textcase: var(--text-transform-none);
|
|
534
|
-
--heading-2xl-medium-textdecoration: var(--text-decoration-none);
|
|
535
|
-
--heading-3xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
536
|
-
--heading-3xl-bold-fontsize: var(--font-size-text-3xl);
|
|
537
|
-
--heading-3xl-bold-fontweight: var(--font-weight-bold-700);
|
|
538
|
-
--heading-3xl-bold-letterspacing: var(--tracking-normal);
|
|
539
|
-
--heading-3xl-bold-lineheight: var(--line-height-text-3xl-leading-tight);
|
|
540
|
-
--heading-3xl-bold-paragraphindent: var(--text-indent-0);
|
|
541
|
-
--heading-3xl-bold-paragraphspacing: var(--space-between-0);
|
|
542
|
-
--heading-3xl-bold-textcase: var(--text-transform-none);
|
|
543
|
-
--heading-3xl-bold-textdecoration: var(--text-decoration-none);
|
|
544
|
-
--heading-3xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
545
|
-
--heading-3xl-medium-fontsize: var(--font-size-text-3xl);
|
|
546
|
-
--heading-3xl-medium-fontweight: var(--font-weight-medium-500);
|
|
547
|
-
--heading-3xl-medium-letterspacing: var(--tracking-normal);
|
|
548
|
-
--heading-3xl-medium-lineheight: var(--line-height-text-3xl-leading-tight);
|
|
549
|
-
--heading-3xl-medium-paragraphindent: var(--text-indent-0);
|
|
550
|
-
--heading-3xl-medium-paragraphspacing: var(--space-between-0);
|
|
551
|
-
--heading-3xl-medium-textcase: var(--text-transform-none);
|
|
552
|
-
--heading-3xl-medium-textdecoration: var(--text-decoration-none);
|
|
553
|
-
--heading-4xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
554
|
-
--heading-4xl-bold-fontsize: var(--font-size-text-4xl);
|
|
555
|
-
--heading-4xl-bold-fontweight: var(--font-weight-bold-700);
|
|
556
|
-
--heading-4xl-bold-letterspacing: var(--tracking-normal);
|
|
557
|
-
--heading-4xl-bold-lineheight: var(--line-height-text-4xl-leading-tight);
|
|
558
|
-
--heading-4xl-bold-paragraphindent: var(--text-indent-0);
|
|
559
|
-
--heading-4xl-bold-paragraphspacing: var(--space-between-0);
|
|
560
|
-
--heading-4xl-bold-textcase: var(--text-transform-none);
|
|
561
|
-
--heading-4xl-bold-textdecoration: var(--text-decoration-none);
|
|
562
|
-
--heading-4xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
563
|
-
--heading-4xl-medium-fontsize: var(--font-size-text-4xl);
|
|
564
|
-
--heading-4xl-medium-fontweight: var(--font-weight-medium-500);
|
|
565
|
-
--heading-4xl-medium-letterspacing: var(--tracking-normal);
|
|
566
|
-
--heading-4xl-medium-lineheight: var(--line-height-text-4xl-leading-tight);
|
|
567
|
-
--heading-4xl-medium-paragraphindent: var(--text-indent-0);
|
|
568
|
-
--heading-4xl-medium-paragraphspacing: var(--space-between-0);
|
|
569
|
-
--heading-4xl-medium-textcase: var(--text-transform-none);
|
|
570
|
-
--heading-4xl-medium-textdecoration: var(--text-decoration-none);
|
|
571
|
-
--heading-lg-bold-fontfamily: var(--fontfamilies-archivo);
|
|
572
|
-
--heading-lg-bold-fontsize: var(--font-size-text-lg);
|
|
573
|
-
--heading-lg-bold-fontweight: var(--font-weight-bold-700);
|
|
574
|
-
--heading-lg-bold-letterspacing: var(--tracking-normal);
|
|
575
|
-
--heading-lg-bold-lineheight: var(--line-height-text-lg-leading-tight);
|
|
576
|
-
--heading-lg-bold-paragraphindent: var(--text-indent-0);
|
|
577
|
-
--heading-lg-bold-paragraphspacing: var(--space-between-0);
|
|
578
|
-
--heading-lg-bold-textcase: var(--text-transform-none);
|
|
579
|
-
--heading-lg-bold-textdecoration: var(--text-decoration-none);
|
|
580
|
-
--heading-lg-medium-fontfamily: var(--fontfamilies-archivo);
|
|
581
|
-
--heading-lg-medium-fontsize: var(--font-size-text-lg);
|
|
582
|
-
--heading-lg-medium-fontweight: var(--font-weight-medium-500);
|
|
583
|
-
--heading-lg-medium-letterspacing: var(--tracking-normal);
|
|
584
|
-
--heading-lg-medium-lineheight: var(--line-height-text-lg-leading-tight);
|
|
585
|
-
--heading-lg-medium-paragraphindent: var(--text-indent-0);
|
|
586
|
-
--heading-lg-medium-paragraphspacing: var(--space-between-0);
|
|
587
|
-
--heading-lg-medium-textcase: var(--text-transform-none);
|
|
588
|
-
--heading-lg-medium-textdecoration: var(--text-decoration-none);
|
|
589
|
-
--heading-xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
590
|
-
--heading-xl-bold-fontsize: var(--font-size-text-xl);
|
|
591
|
-
--heading-xl-bold-fontweight: var(--font-weight-bold-700);
|
|
592
|
-
--heading-xl-bold-letterspacing: var(--tracking-normal);
|
|
593
|
-
--heading-xl-bold-lineheight: var(--line-height-text-xl-leading-tight);
|
|
594
|
-
--heading-xl-bold-paragraphindent: var(--text-indent-0);
|
|
595
|
-
--heading-xl-bold-paragraphspacing: var(--space-between-0);
|
|
596
|
-
--heading-xl-bold-textcase: var(--text-transform-none);
|
|
597
|
-
--heading-xl-bold-textdecoration: var(--text-decoration-none);
|
|
598
|
-
--heading-xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
599
|
-
--heading-xl-medium-fontsize: var(--font-size-text-xl);
|
|
600
|
-
--heading-xl-medium-fontweight: var(--font-weight-medium-500);
|
|
601
|
-
--heading-xl-medium-letterspacing: var(--tracking-normal);
|
|
602
|
-
--heading-xl-medium-lineheight: var(--line-height-text-xl-leading-tight);
|
|
603
|
-
--heading-xl-medium-paragraphindent: var(--text-indent-0);
|
|
604
|
-
--heading-xl-medium-paragraphspacing: var(--space-between-0);
|
|
605
|
-
--heading-xl-medium-textcase: var(--text-transform-none);
|
|
606
|
-
--heading-xl-medium-textdecoration: var(--text-decoration-none);
|
|
607
377
|
}
|
|
608
378
|
|
|
609
379
|
/* ─── Dark theme overrides ─────────────────────────────────────────────────── */
|
|
610
380
|
@variant dark {
|
|
611
381
|
@theme {
|
|
612
|
-
--body-base-bold-fontfamily: var(--fontfamilies-archivo);
|
|
613
|
-
--body-base-bold-fontsize: var(--font-size-text-md);
|
|
614
|
-
--body-base-bold-fontweight: var(--font-weight-bold-700);
|
|
615
|
-
--body-base-bold-letterspacing: var(--tracking-normal);
|
|
616
|
-
--body-base-bold-lineheight: var(--line-height-text-md-leading-normal);
|
|
617
|
-
--body-base-bold-paragraphindent: var(--text-indent-0);
|
|
618
|
-
--body-base-bold-paragraphspacing: var(--space-between-0);
|
|
619
|
-
--body-base-bold-textcase: var(--text-transform-none);
|
|
620
|
-
--body-base-bold-textdecoration: var(--text-decoration-none);
|
|
621
|
-
--body-base-medium-fontfamily: var(--fontfamilies-archivo);
|
|
622
|
-
--body-base-medium-fontsize: var(--font-size-text-md);
|
|
623
|
-
--body-base-medium-fontweight: var(--font-weight-medium-500);
|
|
624
|
-
--body-base-medium-letterspacing: var(--tracking-normal);
|
|
625
|
-
--body-base-medium-lineheight: var(--line-height-text-md-leading-normal);
|
|
626
|
-
--body-base-medium-paragraphindent: var(--text-indent-0);
|
|
627
|
-
--body-base-medium-paragraphspacing: var(--space-between-0);
|
|
628
|
-
--body-base-medium-textcase: var(--text-transform-none);
|
|
629
|
-
--body-base-medium-textdecoration: var(--text-decoration-none);
|
|
630
|
-
--body-base-regular-fontfamily: var(--fontfamilies-archivo);
|
|
631
|
-
--body-base-regular-fontsize: var(--font-size-text-md);
|
|
632
|
-
--body-base-regular-fontweight: var(--font-weight-regular-400);
|
|
633
|
-
--body-base-regular-letterspacing: var(--tracking-normal);
|
|
634
|
-
--body-base-regular-lineheight: var(--line-height-text-md-leading-normal);
|
|
635
|
-
--body-base-regular-paragraphindent: var(--text-indent-0);
|
|
636
|
-
--body-base-regular-paragraphspacing: var(--space-between-0);
|
|
637
|
-
--body-base-regular-textcase: var(--text-transform-none);
|
|
638
|
-
--body-base-regular-textdecoration: var(--text-decoration-none);
|
|
639
|
-
--body-sm-bold-fontfamily: var(--fontfamilies-archivo);
|
|
640
|
-
--body-sm-bold-fontsize: var(--font-size-text-sm);
|
|
641
|
-
--body-sm-bold-fontweight: var(--font-weight-bold-700);
|
|
642
|
-
--body-sm-bold-letterspacing: var(--tracking-normal);
|
|
643
|
-
--body-sm-bold-lineheight: var(--line-height-text-sm-leading-normal);
|
|
644
|
-
--body-sm-bold-paragraphindent: var(--text-indent-0);
|
|
645
|
-
--body-sm-bold-paragraphspacing: var(--space-between-0);
|
|
646
|
-
--body-sm-bold-textcase: var(--text-transform-none);
|
|
647
|
-
--body-sm-bold-textdecoration: var(--text-decoration-none);
|
|
648
|
-
--body-sm-medium-fontfamily: var(--fontfamilies-archivo);
|
|
649
|
-
--body-sm-medium-fontsize: var(--font-size-text-sm);
|
|
650
|
-
--body-sm-medium-fontweight: var(--font-weight-medium-500);
|
|
651
|
-
--body-sm-medium-letterspacing: var(--tracking-normal);
|
|
652
|
-
--body-sm-medium-lineheight: var(--line-height-text-sm-leading-normal);
|
|
653
|
-
--body-sm-medium-paragraphindent: var(--text-indent-0);
|
|
654
|
-
--body-sm-medium-paragraphspacing: var(--space-between-0);
|
|
655
|
-
--body-sm-medium-textcase: var(--text-transform-none);
|
|
656
|
-
--body-sm-medium-textdecoration: var(--text-decoration-none);
|
|
657
|
-
--body-sm-regular-fontfamily: var(--fontfamilies-archivo);
|
|
658
|
-
--body-sm-regular-fontsize: var(--font-size-text-sm);
|
|
659
|
-
--body-sm-regular-fontweight: var(--font-weight-regular-400);
|
|
660
|
-
--body-sm-regular-letterspacing: var(--tracking-normal);
|
|
661
|
-
--body-sm-regular-lineheight: var(--line-height-text-sm-leading-normal);
|
|
662
|
-
--body-sm-regular-paragraphindent: var(--text-indent-0);
|
|
663
|
-
--body-sm-regular-paragraphspacing: var(--space-between-0);
|
|
664
|
-
--body-sm-regular-textcase: var(--text-transform-none);
|
|
665
|
-
--body-sm-regular-textdecoration: var(--text-decoration-none);
|
|
666
|
-
--body-xs-bold-fontfamily: var(--fontfamilies-archivo);
|
|
667
|
-
--body-xs-bold-fontsize: var(--font-size-text-xs);
|
|
668
|
-
--body-xs-bold-fontweight: var(--font-weight-bold-700);
|
|
669
|
-
--body-xs-bold-letterspacing: var(--tracking-normal);
|
|
670
|
-
--body-xs-bold-lineheight: var(--line-height-text-xs-leading-normal);
|
|
671
|
-
--body-xs-bold-paragraphindent: var(--text-indent-0);
|
|
672
|
-
--body-xs-bold-paragraphspacing: var(--text-indent-0);
|
|
673
|
-
--body-xs-bold-textcase: var(--text-transform-none);
|
|
674
|
-
--body-xs-bold-textdecoration: var(--text-decoration-none);
|
|
675
|
-
--body-xs-medium-fontfamily: var(--fontfamilies-archivo);
|
|
676
|
-
--body-xs-medium-fontsize: var(--font-size-text-xs);
|
|
677
|
-
--body-xs-medium-fontweight: var(--font-weight-medium-500);
|
|
678
|
-
--body-xs-medium-letterspacing: var(--tracking-normal);
|
|
679
|
-
--body-xs-medium-lineheight: var(--line-height-text-xs-leading-normal);
|
|
680
|
-
--body-xs-medium-paragraphindent: var(--text-indent-0);
|
|
681
|
-
--body-xs-medium-paragraphspacing: var(--space-between-0);
|
|
682
|
-
--body-xs-medium-textcase: var(--text-transform-none);
|
|
683
|
-
--body-xs-medium-textdecoration: var(--text-decoration-none);
|
|
684
|
-
--body-xs-regular-fontfamily: var(--fontfamilies-archivo);
|
|
685
|
-
--body-xs-regular-fontsize: var(--font-size-text-xs);
|
|
686
|
-
--body-xs-regular-fontweight: var(--font-weight-regular-400);
|
|
687
|
-
--body-xs-regular-letterspacing: var(--tracking-normal);
|
|
688
|
-
--body-xs-regular-lineheight: var(--line-height-text-xs-leading-normal);
|
|
689
|
-
--body-xs-regular-paragraphindent: var(--text-indent-0);
|
|
690
|
-
--body-xs-regular-paragraphspacing: var(--space-between-0);
|
|
691
|
-
--body-xs-regular-textcase: var(--text-transform-none);
|
|
692
|
-
--body-xs-regular-textdecoration: var(--text-decoration-none);
|
|
693
382
|
--color-background-accent-blue-bold-default: var(--color-blue-300);
|
|
694
383
|
--color-background-accent-blue-bold-hover: #ffffff;
|
|
695
384
|
--color-background-accent-blue-bold-pressed: #ffffff;
|
|
@@ -921,95 +610,5 @@
|
|
|
921
610
|
--color-text-secondary: var(--color-dark-neutral-1100);
|
|
922
611
|
--color-text-success: var(--color-green-500);
|
|
923
612
|
--color-text-tertiary: var(--color-dark-neutral-400);
|
|
924
|
-
--heading-2xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
925
|
-
--heading-2xl-bold-fontsize: var(--font-size-text-2xl);
|
|
926
|
-
--heading-2xl-bold-fontweight: var(--font-weight-bold-700);
|
|
927
|
-
--heading-2xl-bold-letterspacing: var(--tracking-normal);
|
|
928
|
-
--heading-2xl-bold-lineheight: var(--line-height-text-2xl-leading-tight);
|
|
929
|
-
--heading-2xl-bold-paragraphindent: var(--text-indent-0);
|
|
930
|
-
--heading-2xl-bold-paragraphspacing: var(--space-between-0);
|
|
931
|
-
--heading-2xl-bold-textcase: var(--text-transform-none);
|
|
932
|
-
--heading-2xl-bold-textdecoration: var(--text-decoration-none);
|
|
933
|
-
--heading-2xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
934
|
-
--heading-2xl-medium-fontsize: var(--font-size-text-2xl);
|
|
935
|
-
--heading-2xl-medium-fontweight: var(--font-weight-medium-500);
|
|
936
|
-
--heading-2xl-medium-letterspacing: var(--tracking-normal);
|
|
937
|
-
--heading-2xl-medium-lineheight: var(--line-height-text-2xl-leading-tight);
|
|
938
|
-
--heading-2xl-medium-paragraphindent: var(--text-indent-0);
|
|
939
|
-
--heading-2xl-medium-paragraphspacing: var(--space-between-0);
|
|
940
|
-
--heading-2xl-medium-textcase: var(--text-transform-none);
|
|
941
|
-
--heading-2xl-medium-textdecoration: var(--text-decoration-none);
|
|
942
|
-
--heading-3xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
943
|
-
--heading-3xl-bold-fontsize: var(--font-size-text-3xl);
|
|
944
|
-
--heading-3xl-bold-fontweight: var(--font-weight-bold-700);
|
|
945
|
-
--heading-3xl-bold-letterspacing: var(--tracking-normal);
|
|
946
|
-
--heading-3xl-bold-lineheight: var(--line-height-text-3xl-leading-tight);
|
|
947
|
-
--heading-3xl-bold-paragraphindent: var(--text-indent-0);
|
|
948
|
-
--heading-3xl-bold-paragraphspacing: var(--space-between-0);
|
|
949
|
-
--heading-3xl-bold-textcase: var(--text-transform-none);
|
|
950
|
-
--heading-3xl-bold-textdecoration: var(--text-decoration-none);
|
|
951
|
-
--heading-3xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
952
|
-
--heading-3xl-medium-fontsize: var(--font-size-text-3xl);
|
|
953
|
-
--heading-3xl-medium-fontweight: var(--font-weight-medium-500);
|
|
954
|
-
--heading-3xl-medium-letterspacing: var(--tracking-normal);
|
|
955
|
-
--heading-3xl-medium-lineheight: var(--line-height-text-3xl-leading-tight);
|
|
956
|
-
--heading-3xl-medium-paragraphindent: var(--text-indent-0);
|
|
957
|
-
--heading-3xl-medium-paragraphspacing: var(--space-between-0);
|
|
958
|
-
--heading-3xl-medium-textcase: var(--text-transform-none);
|
|
959
|
-
--heading-3xl-medium-textdecoration: var(--text-decoration-none);
|
|
960
|
-
--heading-4xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
961
|
-
--heading-4xl-bold-fontsize: var(--font-size-text-4xl);
|
|
962
|
-
--heading-4xl-bold-fontweight: var(--font-weight-bold-700);
|
|
963
|
-
--heading-4xl-bold-letterspacing: var(--tracking-normal);
|
|
964
|
-
--heading-4xl-bold-lineheight: var(--line-height-text-4xl-leading-tight);
|
|
965
|
-
--heading-4xl-bold-paragraphindent: var(--text-indent-0);
|
|
966
|
-
--heading-4xl-bold-paragraphspacing: var(--space-between-0);
|
|
967
|
-
--heading-4xl-bold-textcase: var(--text-transform-none);
|
|
968
|
-
--heading-4xl-bold-textdecoration: var(--text-decoration-none);
|
|
969
|
-
--heading-4xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
970
|
-
--heading-4xl-medium-fontsize: var(--font-size-text-4xl);
|
|
971
|
-
--heading-4xl-medium-fontweight: var(--font-weight-medium-500);
|
|
972
|
-
--heading-4xl-medium-letterspacing: var(--tracking-normal);
|
|
973
|
-
--heading-4xl-medium-lineheight: var(--line-height-text-4xl-leading-tight);
|
|
974
|
-
--heading-4xl-medium-paragraphindent: var(--text-indent-0);
|
|
975
|
-
--heading-4xl-medium-paragraphspacing: var(--space-between-0);
|
|
976
|
-
--heading-4xl-medium-textcase: var(--text-transform-none);
|
|
977
|
-
--heading-4xl-medium-textdecoration: var(--text-decoration-none);
|
|
978
|
-
--heading-lg-bold-fontfamily: var(--fontfamilies-archivo);
|
|
979
|
-
--heading-lg-bold-fontsize: var(--font-size-text-lg);
|
|
980
|
-
--heading-lg-bold-fontweight: var(--font-weight-bold-700);
|
|
981
|
-
--heading-lg-bold-letterspacing: var(--tracking-normal);
|
|
982
|
-
--heading-lg-bold-lineheight: var(--line-height-text-lg-leading-tight);
|
|
983
|
-
--heading-lg-bold-paragraphindent: var(--text-indent-0);
|
|
984
|
-
--heading-lg-bold-paragraphspacing: var(--space-between-0);
|
|
985
|
-
--heading-lg-bold-textcase: var(--text-transform-none);
|
|
986
|
-
--heading-lg-bold-textdecoration: var(--text-decoration-none);
|
|
987
|
-
--heading-lg-medium-fontfamily: var(--fontfamilies-archivo);
|
|
988
|
-
--heading-lg-medium-fontsize: var(--font-size-text-lg);
|
|
989
|
-
--heading-lg-medium-fontweight: var(--font-weight-medium-500);
|
|
990
|
-
--heading-lg-medium-letterspacing: var(--tracking-normal);
|
|
991
|
-
--heading-lg-medium-lineheight: var(--line-height-text-lg-leading-tight);
|
|
992
|
-
--heading-lg-medium-paragraphindent: var(--text-indent-0);
|
|
993
|
-
--heading-lg-medium-paragraphspacing: var(--space-between-0);
|
|
994
|
-
--heading-lg-medium-textcase: var(--text-transform-none);
|
|
995
|
-
--heading-lg-medium-textdecoration: var(--text-decoration-none);
|
|
996
|
-
--heading-xl-bold-fontfamily: var(--fontfamilies-archivo);
|
|
997
|
-
--heading-xl-bold-fontsize: var(--font-size-text-xl);
|
|
998
|
-
--heading-xl-bold-fontweight: var(--font-weight-bold-700);
|
|
999
|
-
--heading-xl-bold-letterspacing: var(--tracking-normal);
|
|
1000
|
-
--heading-xl-bold-lineheight: var(--line-height-text-xl-leading-tight);
|
|
1001
|
-
--heading-xl-bold-paragraphindent: var(--text-indent-0);
|
|
1002
|
-
--heading-xl-bold-paragraphspacing: var(--space-between-0);
|
|
1003
|
-
--heading-xl-bold-textcase: var(--text-transform-none);
|
|
1004
|
-
--heading-xl-bold-textdecoration: var(--text-decoration-none);
|
|
1005
|
-
--heading-xl-medium-fontfamily: var(--fontfamilies-archivo);
|
|
1006
|
-
--heading-xl-medium-fontsize: var(--font-size-text-xl);
|
|
1007
|
-
--heading-xl-medium-fontweight: var(--font-weight-medium-500);
|
|
1008
|
-
--heading-xl-medium-letterspacing: var(--tracking-normal);
|
|
1009
|
-
--heading-xl-medium-lineheight: var(--line-height-text-xl-leading-tight);
|
|
1010
|
-
--heading-xl-medium-paragraphindent: var(--text-indent-0);
|
|
1011
|
-
--heading-xl-medium-paragraphspacing: var(--space-between-0);
|
|
1012
|
-
--heading-xl-medium-textcase: var(--text-transform-none);
|
|
1013
|
-
--heading-xl-medium-textdecoration: var(--text-decoration-none);
|
|
1014
613
|
}
|
|
1015
614
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcc-code/design-tokens",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "Design tokens package with light/dark themes for PrimeVue, WordPress, and vanilla HTML/JS.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/variables.css",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "node export-tokens/build.js && node export-tokens/generators/generate-css-variables.js && node export-tokens/generators/generate-primevue-preset.js && node export-tokens/generators/generate-tailwind-css.js
|
|
19
|
+
"build": "node export-tokens/build.js && node export-tokens/generators/generate-css-variables.js && node export-tokens/generators/generate-primevue-preset.js && node export-tokens/generators/generate-tailwind-css.js"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
22
|
"design-tokens",
|
package/dist/tailwind.config.js
DELETED
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
// Generated Tailwind config — DO NOT EDIT
|
|
2
|
-
module.exports = {
|
|
3
|
-
darkMode: ["class", ".dark-mode"],
|
|
4
|
-
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
5
|
-
theme: {
|
|
6
|
-
extend: {
|
|
7
|
-
spacing: {
|
|
8
|
-
0: "0 rem",
|
|
9
|
-
1: "0.25rem",
|
|
10
|
-
2: "0.5rem",
|
|
11
|
-
3: "0.75rem",
|
|
12
|
-
4: "1rem",
|
|
13
|
-
5: "1.25rem",
|
|
14
|
-
6: "1.5rem",
|
|
15
|
-
8: "2rem",
|
|
16
|
-
10: "2.5rem",
|
|
17
|
-
12: "3rem",
|
|
18
|
-
16: "4rem",
|
|
19
|
-
20: "80px",
|
|
20
|
-
"0.5": "0.125rem",
|
|
21
|
-
"1.5": "0.375rem"
|
|
22
|
-
},
|
|
23
|
-
borderRadius: {
|
|
24
|
-
none: "0",
|
|
25
|
-
xs: "0.125rem",
|
|
26
|
-
sm: "0.25rem",
|
|
27
|
-
md: "0.5rem",
|
|
28
|
-
lg: "1rem",
|
|
29
|
-
xl: "2rem",
|
|
30
|
-
"2xl": "3rem",
|
|
31
|
-
full: "999px"
|
|
32
|
-
},
|
|
33
|
-
fontSize: {
|
|
34
|
-
xs: "0.75rem",
|
|
35
|
-
sm: "0.875rem",
|
|
36
|
-
md: "1rem",
|
|
37
|
-
lg: "1.25rem",
|
|
38
|
-
xl: "1.5rem",
|
|
39
|
-
"2xl": "2rem",
|
|
40
|
-
"3xl": "2.25rem",
|
|
41
|
-
"4xl": "3rem"
|
|
42
|
-
},
|
|
43
|
-
colors: {
|
|
44
|
-
neutral: {
|
|
45
|
-
0: "#ffffff",
|
|
46
|
-
100: "#f7f8f9",
|
|
47
|
-
200: "#f1f2f4",
|
|
48
|
-
300: "#dcdfe4",
|
|
49
|
-
400: "#b3b9c4",
|
|
50
|
-
500: "#8590a2",
|
|
51
|
-
600: "#758195",
|
|
52
|
-
700: "#626f86",
|
|
53
|
-
800: "#4b5668",
|
|
54
|
-
900: "#374152",
|
|
55
|
-
1000: "#282f3c",
|
|
56
|
-
1100: "#1e242d"
|
|
57
|
-
},
|
|
58
|
-
"dark-neutral": {
|
|
59
|
-
0: "#161a1d",
|
|
60
|
-
100: "#1d2125",
|
|
61
|
-
200: "#22272b",
|
|
62
|
-
300: "#2c333a",
|
|
63
|
-
400: "#454f59",
|
|
64
|
-
500: "#596773",
|
|
65
|
-
600: "#738496",
|
|
66
|
-
700: "#8c9bab",
|
|
67
|
-
800: "#9fadbc",
|
|
68
|
-
900: "#b6c2cf",
|
|
69
|
-
1000: "#c7d1db",
|
|
70
|
-
1100: "#dee4ea"
|
|
71
|
-
},
|
|
72
|
-
bcc: {
|
|
73
|
-
100: "#e6f2f1",
|
|
74
|
-
200: "#d0e3e1",
|
|
75
|
-
300: "#accbc8",
|
|
76
|
-
400: "#73b2ac",
|
|
77
|
-
500: "#2e9087",
|
|
78
|
-
600: "#187b73",
|
|
79
|
-
700: "#0e6962",
|
|
80
|
-
800: "#004e48",
|
|
81
|
-
900: "#003d39",
|
|
82
|
-
1000: "#002320"
|
|
83
|
-
},
|
|
84
|
-
rust: {
|
|
85
|
-
100: "#fcf6f4",
|
|
86
|
-
200: "#f9ece7",
|
|
87
|
-
300: "#f6dcd2",
|
|
88
|
-
400: "#e9b29e",
|
|
89
|
-
500: "#e29f87",
|
|
90
|
-
600: "#d37f60",
|
|
91
|
-
700: "#be6544",
|
|
92
|
-
800: "#9f5236",
|
|
93
|
-
900: "#844630",
|
|
94
|
-
1000: "#4c271a"
|
|
95
|
-
},
|
|
96
|
-
red: {
|
|
97
|
-
100: "#fcf4f4",
|
|
98
|
-
200: "#fae7e6",
|
|
99
|
-
300: "#f6d3d2",
|
|
100
|
-
400: "#efb4b2",
|
|
101
|
-
500: "#e38986",
|
|
102
|
-
600: "#d5625e",
|
|
103
|
-
700: "#c04642",
|
|
104
|
-
800: "#ad3c38",
|
|
105
|
-
900: "#86312e",
|
|
106
|
-
1000: "#461716"
|
|
107
|
-
},
|
|
108
|
-
green: {
|
|
109
|
-
100: "#f2fbf6",
|
|
110
|
-
200: "#e2f6ea",
|
|
111
|
-
300: "#c6ecd6",
|
|
112
|
-
400: "#9adbb5",
|
|
113
|
-
500: "#66c28d",
|
|
114
|
-
600: "#40a56c",
|
|
115
|
-
700: "#308957",
|
|
116
|
-
800: "#296c47",
|
|
117
|
-
900: "#25563b",
|
|
118
|
-
1000: "#133925"
|
|
119
|
-
},
|
|
120
|
-
teal: {
|
|
121
|
-
100: "#f1f9fa",
|
|
122
|
-
200: "#dceff1",
|
|
123
|
-
300: "#bde0e4",
|
|
124
|
-
400: "#8fc9d1",
|
|
125
|
-
500: "#5cabb7",
|
|
126
|
-
600: "#3e8e9c",
|
|
127
|
-
700: "#377483",
|
|
128
|
-
800: "#32606c",
|
|
129
|
-
900: "#2f505b",
|
|
130
|
-
1000: "#1d353f"
|
|
131
|
-
},
|
|
132
|
-
sand: {
|
|
133
|
-
100: "#f7f3ee",
|
|
134
|
-
200: "#ede5da",
|
|
135
|
-
300: "#dccfba",
|
|
136
|
-
400: "#c5b191",
|
|
137
|
-
500: "#ae966d",
|
|
138
|
-
600: "#937b4f",
|
|
139
|
-
700: "#74613c",
|
|
140
|
-
800: "#5a4d31",
|
|
141
|
-
900: "#49402b",
|
|
142
|
-
1000: "#3c3420"
|
|
143
|
-
},
|
|
144
|
-
blue: {
|
|
145
|
-
100: "#f1f7fd",
|
|
146
|
-
200: "#dfedfa",
|
|
147
|
-
300: "#c6e0f7",
|
|
148
|
-
400: "#a0cdf0",
|
|
149
|
-
500: "#72b1e8",
|
|
150
|
-
600: "#5294e0",
|
|
151
|
-
700: "#3c79d4",
|
|
152
|
-
800: "#3365c2",
|
|
153
|
-
900: "#2f529e",
|
|
154
|
-
1000: "#25385f"
|
|
155
|
-
},
|
|
156
|
-
purple: {
|
|
157
|
-
100: "#f1f1fc",
|
|
158
|
-
200: "#e5e7fa",
|
|
159
|
-
300: "#d0d1f5",
|
|
160
|
-
400: "#b3b3ee",
|
|
161
|
-
500: "#9b95e4",
|
|
162
|
-
600: "#8678d9",
|
|
163
|
-
700: "#7860cb",
|
|
164
|
-
800: "#6750b2",
|
|
165
|
-
900: "#554390",
|
|
166
|
-
1000: "#352c54"
|
|
167
|
-
},
|
|
168
|
-
magenta: {
|
|
169
|
-
100: "#faf5f9",
|
|
170
|
-
200: "#f7ecf5",
|
|
171
|
-
300: "#f0daec",
|
|
172
|
-
400: "#e4bddd",
|
|
173
|
-
500: "#d294c5",
|
|
174
|
-
600: "#c377b1",
|
|
175
|
-
700: "#ac5693",
|
|
176
|
-
800: "#93437a",
|
|
177
|
-
900: "#7a3a65",
|
|
178
|
-
1000: "#592648"
|
|
179
|
-
},
|
|
180
|
-
"neutral-alpha": {
|
|
181
|
-
"100A": "rgba(9, 30, 77, 0.03)",
|
|
182
|
-
"500A": "rgba(9, 30, 77, 0.5)",
|
|
183
|
-
"200A": "rgba(9, 30, 77, 0.06)",
|
|
184
|
-
"300A": "rgba(9, 30, 77, 0.14)",
|
|
185
|
-
"400A": "rgba(9, 30, 77, 0.31)"
|
|
186
|
-
},
|
|
187
|
-
"dark-neutral-alpha": {
|
|
188
|
-
"100A": "rgba(188, 214, 240, 0.04)",
|
|
189
|
-
"200A": "rgba(161, 189, 217, 0.08)",
|
|
190
|
-
"300A": "rgba(166, 197, 226, 0.16)",
|
|
191
|
-
"400A": "rgba(166, 197, 226, 0.28)",
|
|
192
|
-
"500A": "rgba(166, 197, 226, 0.5)"
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
plugins: ["require('tailwindcss-primeui')"]
|
|
198
|
-
};
|