@bcc-code/design-tokens 1.0.5 → 1.0.7

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 CHANGED
@@ -22,19 +22,21 @@ A scoped design token package with light and dark themes, usable across PrimeVue
22
22
  ### ▶️ Install via NPM (for Vue/PrimeVue)
23
23
 
24
24
  ```bash
25
- npm install @bcc-code/design-tokens
25
+ npm install @bcc-code/design-tokens@latest
26
26
  ```
27
27
 
28
28
  In your `main.js`:
29
29
 
30
30
  ```js
31
- import "@bcc-code/design-tokens/dist/variables.css"; // Injects all CSS variables
32
- import { primeVuePreset } from "@bcc-code/design-tokens";
31
+ import "@bcc-code/design-tokens/variables.css"; // Injects all CSS variables
32
+ import { BCCPrimeVuePreset } from "@bcc-code/design-tokens/primevue-preset";
33
33
 
34
34
  app.use(PrimeVue, {
35
35
  theme: {
36
- preset: primeVuePreset,
37
- darkModeSelector: ".dark-mode", // You toggle this class manually or via script
36
+ preset: BCCPrimeVuePreset,
37
+ options: {
38
+ darkModeSelector: ".dark-mode", // You toggle this class manually or via script
39
+ },
38
40
  },
39
41
  });
40
42
  ```
@@ -44,7 +46,7 @@ app.use(PrimeVue, {
44
46
  ```html
45
47
  <link
46
48
  rel="stylesheet"
47
- href="https://cdn.jsdelivr.net/npm/@bcc-code/design-tokens@1.0.0/dist/variables.css"
49
+ href="https://cdn.jsdelivr.net/npm/@bcc-code/design-tokens@latest/dist/variables.css"
48
50
  />
49
51
  ```
50
52
 
@@ -176,7 +176,7 @@ export const BCCPrimeVuePreset = definePreset(Aura, {
176
176
  "space-1000": "80px"
177
177
  },
178
178
  "border-width": {
179
- base: "1px",
179
+ sm: "1px",
180
180
  md: "2px"
181
181
  },
182
182
  "border-radius": {
@@ -196,7 +196,7 @@ export const BCCPrimeVuePreset = definePreset(Aura, {
196
196
  lg: "2rem",
197
197
  xl: "3rem"
198
198
  },
199
- "text-decoration-line": {
199
+ "text-decoration": {
200
200
  none: "none",
201
201
  underline: "underline",
202
202
  "line-through": "line-through"
@@ -204,12 +204,13 @@ export const BCCPrimeVuePreset = definePreset(Aura, {
204
204
  "text-transform": {
205
205
  uppercase: "uppercase",
206
206
  " lowercase": "lowercase",
207
- " capitalize": "capitalize"
207
+ " capitalize": "capitalize",
208
+ none: "none"
208
209
  },
209
210
  "font-size": {
210
211
  "text-xs": "0.75rem",
211
212
  "text-sm": "0.875rem",
212
- "text-base": "1rem",
213
+ "text-md": "1rem",
213
214
  "text-lg": "1.25rem",
214
215
  "text-xl": "1.5rem",
215
216
  "text-2xl": "2rem",
@@ -256,6 +257,18 @@ export const BCCPrimeVuePreset = definePreset(Aura, {
256
257
  "leading-normal": "1.25rem"
257
258
  }
258
259
  },
260
+ "space-between": {
261
+ 0: "{dimension.space-0}"
262
+ },
263
+ tracking: {
264
+ tighter: "-0.04em",
265
+ tight: "-0.02em",
266
+ normal: "0em",
267
+ wide: "0.04em"
268
+ },
269
+ "text-indent": {
270
+ 0: "{dimension.space-0}"
271
+ },
259
272
  fontFamilies: {
260
273
  archivo: "Archivo"
261
274
  },
@@ -0,0 +1,198 @@
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
+ };
package/dist/tailwind.css CHANGED
@@ -197,8 +197,8 @@
197
197
  /* ✅ Dimension space-1000 */
198
198
  --dimension-space-1000: 80px;
199
199
 
200
- /* ✅ Border-width base */
201
- --border-width-base: 1px;
200
+ /* ✅ Border-width sm */
201
+ --border-width-sm: 1px;
202
202
 
203
203
  /* ✅ Border-width md */
204
204
  --border-width-md: 2px;
@@ -242,14 +242,14 @@
242
242
  /* ✅ Icon-size xl */
243
243
  --icon-size-xl: 3rem;
244
244
 
245
- /* ✅ Text-decoration-line none */
246
- --text-decoration-line-none: none;
245
+ /* ✅ Text-decoration none */
246
+ --text-decoration-none: none;
247
247
 
248
- /* ✅ Text-decoration-line underline */
249
- --text-decoration-line-underline: underline;
248
+ /* ✅ Text-decoration underline */
249
+ --text-decoration-underline: underline;
250
250
 
251
- /* ✅ Text-decoration-line line-through */
252
- --text-decoration-line-line-through: line-through;
251
+ /* ✅ Text-decoration line-through */
252
+ --text-decoration-line-through: line-through;
253
253
 
254
254
  /* ✅ Text-transform uppercase */
255
255
  --text-transform-uppercase: uppercase;
@@ -260,14 +260,17 @@
260
260
  /* ✅ Text-transform capitalize */
261
261
  --text-transform- capitalize: capitalize;
262
262
 
263
+ /* ✅ Text-transform none */
264
+ --text-transform-none: none;
265
+
263
266
  /* ✅ Font-size text-xs */
264
267
  --font-size-text-xs: 0.75rem;
265
268
 
266
269
  /* ✅ Font-size text-sm */
267
270
  --font-size-text-sm: 0.875rem;
268
271
 
269
- /* ✅ Font-size text-base */
270
- --font-size-text-base: 1rem;
272
+ /* ✅ Font-size text-md */
273
+ --font-size-text-md: 1rem;
271
274
 
272
275
  /* ✅ Font-size text-lg */
273
276
  --font-size-text-lg: 1.25rem;
@@ -326,6 +329,24 @@
326
329
  --line-height-text-xs-leading-none: 0.75rem;
327
330
  --line-height-text-xs-leading-normal: 1.25rem;
328
331
 
332
+ /* ✅ Space-between 0 */
333
+ --space-between-0: {dimension.space-0};
334
+
335
+ /* ✅ Tracking tighter */
336
+ --tracking-tighter: -0.04em;
337
+
338
+ /* ✅ Tracking tight */
339
+ --tracking-tight: -0.02em;
340
+
341
+ /* ✅ Tracking normal */
342
+ --tracking-normal: 0em;
343
+
344
+ /* ✅ Tracking wide */
345
+ --tracking-wide: 0.04em;
346
+
347
+ /* ✅ Text-indent 0 */
348
+ --text-indent-0: {dimension.space-0};
349
+
329
350
  /* ✅ FontFamilies archivo */
330
351
  --fontFamilies-archivo: Archivo;
331
352
 
@@ -140,7 +140,7 @@
140
140
  --dimension-space-600: 3rem;
141
141
  --dimension-space-800: 4rem;
142
142
  --dimension-space-1000: 80px;
143
- --border-width-base: 1px;
143
+ --border-width-sm: 1px;
144
144
  --border-width-md: 2px;
145
145
  --border-radius-none: 0;
146
146
  --border-radius-xs: 0.125rem;
@@ -155,15 +155,16 @@
155
155
  --icon-size-md: 1.5rem;
156
156
  --icon-size-lg: 2rem;
157
157
  --icon-size-xl: 3rem;
158
- --text-decoration-line-none: none;
159
- --text-decoration-line-underline: underline;
160
- --text-decoration-line-line-through: line-through;
158
+ --text-decoration-none: none;
159
+ --text-decoration-underline: underline;
160
+ --text-decoration-line-through: line-through;
161
161
  --text-transform-uppercase: uppercase;
162
162
  --text-transform-lowercase: lowercase;
163
163
  --text-transform-capitalize: capitalize;
164
+ --text-transform-none: none;
164
165
  --font-size-text-xs: 0.75rem;
165
166
  --font-size-text-sm: 0.875rem;
166
- --font-size-text-base: 1rem;
167
+ --font-size-text-md: 1rem;
167
168
  --font-size-text-lg: 1.25rem;
168
169
  --font-size-text-xl: 1.5rem;
169
170
  --font-size-text-2xl: 2rem;
@@ -189,6 +190,12 @@
189
190
  --line-height-text-sm-leading-normal: 1.25rem;
190
191
  --line-height-text-xs-leading-none: 0.75rem;
191
192
  --line-height-text-xs-leading-normal: 1.25rem;
193
+ --space-between-0: var(--dimension-space-0);
194
+ --tracking-tighter: -0.04em;
195
+ --tracking-tight: -0.02em;
196
+ --tracking-normal: 0em;
197
+ --tracking-wide: 0.04em;
198
+ --text-indent-0: var(--dimension-space-0);
192
199
  --font-families-archivo: Archivo;
193
200
  --font-weights-archivo-thin: 100;
194
201
  --font-weights-archivo-extralight: 200;
@@ -435,43 +442,43 @@
435
442
  --color-border-accent-magenta-hover: var(--color-magenta-700);
436
443
  --color-border-accent-magenta-pressed: var(--color-magenta-800);
437
444
  --heading-4xl-bold: var(--font-weight-bold-700) var(--font-size-text-4xl)/var(--line-height-text-4xl-leading-tight) var(--font-families-archivo);
438
- --heading-4xl-bold-text-decoration: var(--text-decoration-line-none);
445
+ --heading-4xl-bold-text-decoration: var(--text-decoration-none);
439
446
  --heading-4xl-medium: var(--font-weight-medium-500) var(--font-size-text-4xl)/var(--line-height-text-4xl-leading-tight) var(--font-families-archivo);
440
- --heading-4xl-medium-text-decoration: var(--text-decoration-line-none);
447
+ --heading-4xl-medium-text-decoration: var(--text-decoration-none);
441
448
  --heading-3xl-bold: var(--font-weight-bold-700) var(--font-size-text-3xl)/var(--line-height-text-3xl-leading-tight) var(--font-families-archivo);
442
- --heading-3xl-bold-text-decoration: var(--text-decoration-line-none);
449
+ --heading-3xl-bold-text-decoration: var(--text-decoration-none);
443
450
  --heading-3xl-medium: var(--font-weight-medium-500) var(--font-size-text-3xl)/var(--line-height-text-3xl-leading-tight) var(--font-families-archivo);
444
- --heading-3xl-medium-text-decoration: var(--text-decoration-line-none);
451
+ --heading-3xl-medium-text-decoration: var(--text-decoration-none);
445
452
  --heading-2xl-bold: var(--font-weight-bold-700) var(--font-size-text-2xl)/var(--line-height-text-2xl-leading-tight) var(--font-families-archivo);
446
- --heading-2xl-bold-text-decoration: var(--text-decoration-line-none);
453
+ --heading-2xl-bold-text-decoration: var(--text-decoration-none);
447
454
  --heading-2xl-medium: var(--font-weight-medium-500) var(--font-size-text-2xl)/var(--line-height-text-2xl-leading-tight) var(--font-families-archivo);
448
- --heading-2xl-medium-text-decoration: var(--text-decoration-line-none);
455
+ --heading-2xl-medium-text-decoration: var(--text-decoration-none);
449
456
  --heading-xl-bold: var(--font-weight-bold-700) var(--font-size-text-xl)/var(--line-height-text-xl-leading-tight) var(--font-families-archivo);
450
- --heading-xl-bold-text-decoration: var(--text-decoration-line-none);
457
+ --heading-xl-bold-text-decoration: var(--text-decoration-none);
451
458
  --heading-xl-medium: var(--font-weight-medium-500) var(--font-size-text-xl)/var(--line-height-text-xl-leading-tight) var(--font-families-archivo);
452
- --heading-xl-medium-text-decoration: var(--text-decoration-line-none);
459
+ --heading-xl-medium-text-decoration: var(--text-decoration-none);
453
460
  --heading-lg-bold: var(--font-weight-bold-700) var(--font-size-text-lg)/var(--line-height-text-lg-leading-tight) var(--font-families-archivo);
454
- --heading-lg-bold-text-decoration: var(--text-decoration-line-none);
461
+ --heading-lg-bold-text-decoration: var(--text-decoration-none);
455
462
  --heading-lg-medium: var(--font-weight-medium-500) var(--font-size-text-lg)/var(--line-height-text-lg-leading-tight) var(--font-families-archivo);
456
- --heading-lg-medium-text-decoration: var(--text-decoration-line-none);
457
- --body-base-bold: var(--font-weight-bold-700) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
458
- --body-base-bold-text-decoration: var(--text-decoration-line-none);
459
- --body-base-medium: var(--font-weight-medium-500) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
460
- --body-base-medium-text-decoration: var(--text-decoration-line-none);
461
- --body-base-regular: var(--font-weight-regular-400) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
462
- --body-base-regular-text-decoration: var(--text-decoration-line-none);
463
+ --heading-lg-medium-text-decoration: var(--text-decoration-none);
464
+ --body-base-bold: var(--font-weight-bold-700) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
465
+ --body-base-bold-text-decoration: var(--text-decoration-none);
466
+ --body-base-medium: var(--font-weight-medium-500) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
467
+ --body-base-medium-text-decoration: var(--text-decoration-none);
468
+ --body-base-regular: var(--font-weight-regular-400) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
469
+ --body-base-regular-text-decoration: var(--text-decoration-none);
463
470
  --body-sm-bold: var(--font-weight-bold-700) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
464
- --body-sm-bold-text-decoration: var(--text-decoration-line-none);
471
+ --body-sm-bold-text-decoration: var(--text-decoration-none);
465
472
  --body-sm-medium: var(--font-weight-medium-500) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
466
- --body-sm-medium-text-decoration: var(--text-decoration-line-none);
473
+ --body-sm-medium-text-decoration: var(--text-decoration-none);
467
474
  --body-sm-regular: var(--font-weight-regular-400) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
468
- --body-sm-regular-text-decoration: var(--text-decoration-line-none);
475
+ --body-sm-regular-text-decoration: var(--text-decoration-none);
469
476
  --body-xs-bold: var(--font-weight-bold-700) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
470
- --body-xs-bold-text-decoration: var(--text-decoration-line-none);
477
+ --body-xs-bold-text-decoration: var(--text-decoration-none);
471
478
  --body-xs-medium: var(--font-weight-medium-500) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
472
- --body-xs-medium-text-decoration: var(--text-decoration-line-none);
479
+ --body-xs-medium-text-decoration: var(--text-decoration-none);
473
480
  --body-xs-regular: var(--font-weight-regular-400) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
474
- --body-xs-regular-text-decoration: var(--text-decoration-line-none);
481
+ --body-xs-regular-text-decoration: var(--text-decoration-none);
475
482
  --border-base: 1px none #dcdfe4;
476
483
  --border-brand: 2px none #0e6962;
477
484
  }
@@ -710,41 +717,41 @@
710
717
  --color-border-accent-magenta-hover: var(--color-magenta-400);
711
718
  --color-border-accent-magenta-pressed: var(--color-magenta-300);
712
719
  --heading-4xl-bold: var(--font-weight-bold-700) var(--font-size-text-4xl)/var(--line-height-text-4xl-leading-tight) var(--font-families-archivo);
713
- --heading-4xl-bold-text-decoration: var(--text-decoration-line-none);
720
+ --heading-4xl-bold-text-decoration: var(--text-decoration-none);
714
721
  --heading-4xl-medium: var(--font-weight-medium-500) var(--font-size-text-4xl)/var(--line-height-text-4xl-leading-tight) var(--font-families-archivo);
715
- --heading-4xl-medium-text-decoration: var(--text-decoration-line-none);
722
+ --heading-4xl-medium-text-decoration: var(--text-decoration-none);
716
723
  --heading-3xl-bold: var(--font-weight-bold-700) var(--font-size-text-3xl)/var(--line-height-text-3xl-leading-tight) var(--font-families-archivo);
717
- --heading-3xl-bold-text-decoration: var(--text-decoration-line-none);
724
+ --heading-3xl-bold-text-decoration: var(--text-decoration-none);
718
725
  --heading-3xl-medium: var(--font-weight-medium-500) var(--font-size-text-3xl)/var(--line-height-text-3xl-leading-tight) var(--font-families-archivo);
719
- --heading-3xl-medium-text-decoration: var(--text-decoration-line-none);
726
+ --heading-3xl-medium-text-decoration: var(--text-decoration-none);
720
727
  --heading-2xl-bold: var(--font-weight-bold-700) var(--font-size-text-2xl)/var(--line-height-text-2xl-leading-tight) var(--font-families-archivo);
721
- --heading-2xl-bold-text-decoration: var(--text-decoration-line-none);
728
+ --heading-2xl-bold-text-decoration: var(--text-decoration-none);
722
729
  --heading-2xl-medium: var(--font-weight-medium-500) var(--font-size-text-2xl)/var(--line-height-text-2xl-leading-tight) var(--font-families-archivo);
723
- --heading-2xl-medium-text-decoration: var(--text-decoration-line-none);
730
+ --heading-2xl-medium-text-decoration: var(--text-decoration-none);
724
731
  --heading-xl-bold: var(--font-weight-bold-700) var(--font-size-text-xl)/var(--line-height-text-xl-leading-tight) var(--font-families-archivo);
725
- --heading-xl-bold-text-decoration: var(--text-decoration-line-none);
732
+ --heading-xl-bold-text-decoration: var(--text-decoration-none);
726
733
  --heading-xl-medium: var(--font-weight-medium-500) var(--font-size-text-xl)/var(--line-height-text-xl-leading-tight) var(--font-families-archivo);
727
- --heading-xl-medium-text-decoration: var(--text-decoration-line-none);
734
+ --heading-xl-medium-text-decoration: var(--text-decoration-none);
728
735
  --heading-lg-bold: var(--font-weight-bold-700) var(--font-size-text-lg)/var(--line-height-text-lg-leading-tight) var(--font-families-archivo);
729
- --heading-lg-bold-text-decoration: var(--text-decoration-line-none);
736
+ --heading-lg-bold-text-decoration: var(--text-decoration-none);
730
737
  --heading-lg-medium: var(--font-weight-medium-500) var(--font-size-text-lg)/var(--line-height-text-lg-leading-tight) var(--font-families-archivo);
731
- --heading-lg-medium-text-decoration: var(--text-decoration-line-none);
732
- --body-base-bold: var(--font-weight-bold-700) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
733
- --body-base-bold-text-decoration: var(--text-decoration-line-none);
734
- --body-base-medium: var(--font-weight-medium-500) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
735
- --body-base-medium-text-decoration: var(--text-decoration-line-none);
736
- --body-base-regular: var(--font-weight-regular-400) var(--font-size-text-base)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
737
- --body-base-regular-text-decoration: var(--text-decoration-line-none);
738
+ --heading-lg-medium-text-decoration: var(--text-decoration-none);
739
+ --body-base-bold: var(--font-weight-bold-700) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
740
+ --body-base-bold-text-decoration: var(--text-decoration-none);
741
+ --body-base-medium: var(--font-weight-medium-500) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
742
+ --body-base-medium-text-decoration: var(--text-decoration-none);
743
+ --body-base-regular: var(--font-weight-regular-400) var(--font-size-text-md)/var(--line-height-text-base-leading-normal) var(--font-families-archivo);
744
+ --body-base-regular-text-decoration: var(--text-decoration-none);
738
745
  --body-sm-bold: var(--font-weight-bold-700) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
739
- --body-sm-bold-text-decoration: var(--text-decoration-line-none);
746
+ --body-sm-bold-text-decoration: var(--text-decoration-none);
740
747
  --body-sm-medium: var(--font-weight-medium-500) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
741
- --body-sm-medium-text-decoration: var(--text-decoration-line-none);
748
+ --body-sm-medium-text-decoration: var(--text-decoration-none);
742
749
  --body-sm-regular: var(--font-weight-regular-400) var(--font-size-text-sm)/var(--line-height-text-sm-leading-normal) var(--font-families-archivo);
743
- --body-sm-regular-text-decoration: var(--text-decoration-line-none);
750
+ --body-sm-regular-text-decoration: var(--text-decoration-none);
744
751
  --body-xs-bold: var(--font-weight-bold-700) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
745
- --body-xs-bold-text-decoration: var(--text-decoration-line-none);
752
+ --body-xs-bold-text-decoration: var(--text-decoration-none);
746
753
  --body-xs-medium: var(--font-weight-medium-500) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
747
- --body-xs-medium-text-decoration: var(--text-decoration-line-none);
754
+ --body-xs-medium-text-decoration: var(--text-decoration-none);
748
755
  --body-xs-regular: var(--font-weight-regular-400) var(--font-size-text-xs)/var(--line-height-text-xs-leading-normal) var(--font-families-archivo);
749
- --body-xs-regular-text-decoration: var(--text-decoration-line-none);
756
+ --body-xs-regular-text-decoration: var(--text-decoration-none);
750
757
  }
package/package.json CHANGED
@@ -1,20 +1,22 @@
1
1
  {
2
2
  "name": "@bcc-code/design-tokens",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
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",
7
+ "style": "dist/variables.css",
7
8
  "exports": {
8
9
  "./variables.css": "./dist/variables.css",
9
10
  "./tailwind.css": "./dist/tailwind.css",
10
- "./primevue-preset.js": "./dist/primevue-preset.js"
11
+ "./bcc-primevue-preset.js": "./dist/bcc-primevue-preset.js",
12
+ "./tailwind.config.js": "./dist/tailwind.config.js"
11
13
  },
12
14
  "files": [
13
15
  "dist",
14
16
  "README.md"
15
17
  ],
16
18
  "scripts": {
17
- "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 && node export-tokens/generators/generate-tailwind-config.js"
18
20
  },
19
21
  "keywords": [
20
22
  "design-tokens",