@bcc-code/design-tokens 3.0.21 → 3.0.22
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 +166 -0
- package/build/bcc/css/auto.css +28 -10
- package/build/bcc/css/dark.css +14 -5
- package/build/bcc/css/light.css +14 -5
- package/build/bcc/css/tailwind-auto.css +28 -10
- package/build/bcc/css/tailwind-dark.css +14 -5
- package/build/bcc/css/tailwind-light.css +14 -5
- package/build/bcc/js/dark.js +19 -4
- package/build/bcc/js/light.js +19 -4
- package/build/primevue/component-dark.js +356 -356
- package/build/primevue/component-light.js +570 -570
- package/build/primevue/semantic-dark.js +25 -2
- package/build/primevue/semantic-light.js +25 -2
- package/config/primevue-overrides.css +179 -179
- package/config/primevue.config.js +987 -987
- package/package.json +1 -1
package/build/bcc/js/light.js
CHANGED
|
@@ -302,11 +302,11 @@ export default {
|
|
|
302
302
|
},
|
|
303
303
|
},
|
|
304
304
|
border: {
|
|
305
|
-
default: "
|
|
305
|
+
default: "#b7b9be",
|
|
306
306
|
bold: "#7d818a",
|
|
307
307
|
disabled: "rgba(5, 21, 36, 0.06)",
|
|
308
308
|
selected: "#0c625c",
|
|
309
|
-
focused: "#
|
|
309
|
+
focused: "#505258",
|
|
310
310
|
inverse: "#ffffff",
|
|
311
311
|
input: "#8c8f97",
|
|
312
312
|
success: "#09825d",
|
|
@@ -329,7 +329,7 @@ export default {
|
|
|
329
329
|
},
|
|
330
330
|
background: {
|
|
331
331
|
disabled: {
|
|
332
|
-
default: "rgba(
|
|
332
|
+
default: "rgba(5, 21, 36, 0.06)",
|
|
333
333
|
},
|
|
334
334
|
selected: {
|
|
335
335
|
default: "#f0fcfa",
|
|
@@ -439,6 +439,11 @@ export default {
|
|
|
439
439
|
hover: "rgba(23, 23, 23, 0.03)",
|
|
440
440
|
pressed: "rgba(5, 21, 36, 0.06)",
|
|
441
441
|
},
|
|
442
|
+
bold: {
|
|
443
|
+
default: "rgba(5, 12, 31, 0.46)",
|
|
444
|
+
hover: "rgba(8, 15, 33, 0.29)",
|
|
445
|
+
pressed: "rgba(11, 18, 14, 0.14)",
|
|
446
|
+
},
|
|
442
447
|
},
|
|
443
448
|
accent: {
|
|
444
449
|
blue: {
|
|
@@ -658,9 +663,19 @@ export default {
|
|
|
658
663
|
hover: "#f8f8f8",
|
|
659
664
|
pressed: "#f0f1f2",
|
|
660
665
|
},
|
|
661
|
-
|
|
666
|
+
bold: {
|
|
662
667
|
default: "#6b6e76",
|
|
668
|
+
hover: "#7d818a",
|
|
669
|
+
pressed: "#8c8f97",
|
|
670
|
+
},
|
|
671
|
+
bolder: {
|
|
672
|
+
default: "#3b3d42",
|
|
663
673
|
hover: "#505258",
|
|
674
|
+
pressed: "#6b6e76",
|
|
675
|
+
},
|
|
676
|
+
boldest: {
|
|
677
|
+
default: "#1e1f21",
|
|
678
|
+
hover: "#292a2e",
|
|
664
679
|
pressed: "#3b3d42",
|
|
665
680
|
},
|
|
666
681
|
},
|