@tenerife.music/ui 1.0.13 → 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 +113 -419
- package/dist/{colors-CVA7_16U.d.cts → colors-BrFmCQv-.d.cts} +6 -1
- package/dist/{colors-CVA7_16U.d.ts → colors-BrFmCQv-.d.ts} +6 -1
- package/dist/{index-BgXvioll.d.cts → index-DPWxsWs3.d.cts} +861 -228
- package/dist/{index-Bv4wWj9I.d.ts → index-DPWxsWs3.d.ts} +861 -228
- package/dist/index.cjs +2196 -1132
- package/dist/index.d.cts +451 -127
- package/dist/index.d.ts +451 -127
- package/dist/index.mjs +2196 -1133
- package/dist/preset.cjs +29 -57
- package/dist/preset.mjs +29 -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 +628 -442
- package/dist/tokens/index.d.cts +89 -2
- package/dist/tokens/index.d.ts +89 -2
- package/dist/tokens/index.mjs +628 -443
- package/package.json +57 -53
|
@@ -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
|
/**
|
|
@@ -286,4 +291,4 @@ declare const tailwindThemeColors: {
|
|
|
286
291
|
};
|
|
287
292
|
};
|
|
288
293
|
|
|
289
|
-
export { type BaseColorTokens as B, type
|
|
294
|
+
export { type BaseColorTokens as B, type ChartColors as C, type Mode as M, type SemanticColors as S, type TextColors as T, type ColorScale as a, type ColorTokens as b, type SurfaceColors as c, accentColors as d, baseColors as e, chartColors as f, colorCSSVariables as g, cssVariableColorTokens as h, semanticColors as i, surfaceColors as j, textColors as k, primaryColors as p, secondaryColors as s, tailwindThemeColors as t };
|