@lumx/core 3.9.9-alpha.0 → 3.10.0
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/css/design-tokens.css +2 -2
- package/js/constants/design-tokens.js +12 -2
- package/js/constants/design-tokens.min.js +1 -1
- package/js/constants/design-tokens.min.js.map +1 -1
- package/js/constants/design-tokens.ts +6 -2
- package/lumx.css +1 -1
- package/lumx.min.css +1 -1
- package/package.json +1 -1
- package/scss/_design-tokens.scss +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Mon, 13 Jan 2025 09:24:38 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
export const DESIGN_TOKENS = {
|
|
@@ -442,7 +442,11 @@ export const DESIGN_TOKENS = {
|
|
|
442
442
|
},
|
|
443
443
|
},
|
|
444
444
|
'theme-dark': {
|
|
445
|
-
'border-color': {
|
|
445
|
+
'border-color': {
|
|
446
|
+
value: 'var(--lumx-color-light-N)',
|
|
447
|
+
attributes: { hex: 'ffffff', rgb: { r: 255, g: 255, b: 255, a: 1 } },
|
|
448
|
+
$aliasedFrom: 'color.light.N',
|
|
449
|
+
},
|
|
446
450
|
'background-color': {
|
|
447
451
|
value: 'var(--lumx-color-light-L5)',
|
|
448
452
|
attributes: { hex: 'ffffff', rgb: { r: 255, g: 255, b: 255, a: 0.2 } },
|