@tenerife.music/ui 1.0.15 → 1.0.16
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 +1 -1
- package/dist/{colors-BZtZJBBm.d.cts → colors-BrFmCQv-.d.cts} +5 -0
- package/dist/{colors-BZtZJBBm.d.ts → colors-BrFmCQv-.d.ts} +5 -0
- package/dist/{index-CP_dmFn4.d.cts → index-DPWxsWs3.d.cts} +426 -53
- package/dist/{index-CP_dmFn4.d.ts → index-DPWxsWs3.d.ts} +426 -53
- package/dist/index.cjs +820 -508
- package/dist/index.d.cts +336 -86
- package/dist/index.d.ts +336 -86
- package/dist/index.mjs +820 -508
- package/dist/preset.cjs +28 -57
- package/dist/preset.mjs +28 -57
- package/dist/styles.css +3637 -57
- package/dist/theme/index.cjs +1305 -127
- package/dist/theme/index.d.cts +2 -2
- package/dist/theme/index.d.ts +2 -2
- package/dist/theme/index.mjs +1304 -126
- package/dist/tokens/index.cjs +434 -221
- package/dist/tokens/index.d.cts +2 -2
- package/dist/tokens/index.d.ts +2 -2
- package/dist/tokens/index.mjs +434 -221
- package/package.json +55 -56
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
**Token-driven UI architecture for long-living React products**
|
|
4
4
|
Strict. Predictable. Built for system-level consistency.
|
|
5
5
|
|
|
6
|
-

|
|
7
7
|

|
|
8
8
|

|
|
9
9
|

|
|
@@ -28,16 +28,21 @@ type ColorScale = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Primary color palette - Midnight Blues
|
|
30
30
|
* Tenerife brand primary colors
|
|
31
|
+
* Rebalanced for proper lightness progression
|
|
31
32
|
*/
|
|
32
33
|
declare const primaryColors: ColorScale;
|
|
33
34
|
/**
|
|
34
35
|
* Accent color palette - Purples
|
|
35
36
|
* Used for accents and highlights
|
|
37
|
+
* Rebalanced for semantic strength: 600/700 levels for default/active states
|
|
38
|
+
* Button Color Rebalance v1: Adjusted for minimum 16 L* delta from secondary for clear distinction
|
|
36
39
|
*/
|
|
37
40
|
declare const accentColors: ColorScale;
|
|
38
41
|
/**
|
|
39
42
|
* Secondary color palette - Refined Cyan
|
|
40
43
|
* Tenerife brand secondary colors
|
|
44
|
+
* Rebalanced for semantic strength: 600/700 levels for default/active states
|
|
45
|
+
* Button Color Rebalance v1: Adjusted for better perceptual contrast between variants
|
|
41
46
|
*/
|
|
42
47
|
declare const secondaryColors: ColorScale;
|
|
43
48
|
/**
|
|
@@ -28,16 +28,21 @@ type ColorScale = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Primary color palette - Midnight Blues
|
|
30
30
|
* Tenerife brand primary colors
|
|
31
|
+
* Rebalanced for proper lightness progression
|
|
31
32
|
*/
|
|
32
33
|
declare const primaryColors: ColorScale;
|
|
33
34
|
/**
|
|
34
35
|
* Accent color palette - Purples
|
|
35
36
|
* Used for accents and highlights
|
|
37
|
+
* Rebalanced for semantic strength: 600/700 levels for default/active states
|
|
38
|
+
* Button Color Rebalance v1: Adjusted for minimum 16 L* delta from secondary for clear distinction
|
|
36
39
|
*/
|
|
37
40
|
declare const accentColors: ColorScale;
|
|
38
41
|
/**
|
|
39
42
|
* Secondary color palette - Refined Cyan
|
|
40
43
|
* Tenerife brand secondary colors
|
|
44
|
+
* Rebalanced for semantic strength: 600/700 levels for default/active states
|
|
45
|
+
* Button Color Rebalance v1: Adjusted for better perceptual contrast between variants
|
|
41
46
|
*/
|
|
42
47
|
declare const secondaryColors: ColorScale;
|
|
43
48
|
/**
|