@nextui-org/theme 0.0.0-dev-v2-20240407160841 → 0.0.0-dev-v2-20240413153529
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/dist/{chunk-5QVKTCUZ.mjs → chunk-35UQG44I.mjs} +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/plugin.js +1 -1
- package/dist/plugin.mjs +1 -1
- package/package.json +1 -1
|
@@ -63,7 +63,7 @@ var resolveConfig = (themes = {}, defaultTheme, prefix) => {
|
|
|
63
63
|
if (!colorValue)
|
|
64
64
|
return;
|
|
65
65
|
try {
|
|
66
|
-
const parsedColor = parsedColorsCache[colorValue] || Color(colorValue).hsl().round().array();
|
|
66
|
+
const parsedColor = parsedColorsCache[colorValue] || Color(colorValue).hsl().round(2).array();
|
|
67
67
|
parsedColorsCache[colorValue] = parsedColor;
|
|
68
68
|
const [h, s, l, defaultAlphaValue] = parsedColor;
|
|
69
69
|
const nextuiColorVariable = `--${prefix}-${colorName}`;
|
package/dist/index.js
CHANGED
|
@@ -8656,7 +8656,7 @@ var resolveConfig = (themes = {}, defaultTheme, prefix) => {
|
|
|
8656
8656
|
if (!colorValue)
|
|
8657
8657
|
return;
|
|
8658
8658
|
try {
|
|
8659
|
-
const parsedColor = parsedColorsCache[colorValue] || (0, import_color.default)(colorValue).hsl().round().array();
|
|
8659
|
+
const parsedColor = parsedColorsCache[colorValue] || (0, import_color.default)(colorValue).hsl().round(2).array();
|
|
8660
8660
|
parsedColorsCache[colorValue] = parsedColor;
|
|
8661
8661
|
const [h, s, l, defaultAlphaValue] = parsedColor;
|
|
8662
8662
|
const nextuiColorVariable = `--${prefix}-${colorName}`;
|
package/dist/index.mjs
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -737,7 +737,7 @@ var resolveConfig = (themes = {}, defaultTheme, prefix) => {
|
|
|
737
737
|
if (!colorValue)
|
|
738
738
|
return;
|
|
739
739
|
try {
|
|
740
|
-
const parsedColor = parsedColorsCache[colorValue] || (0, import_color.default)(colorValue).hsl().round().array();
|
|
740
|
+
const parsedColor = parsedColorsCache[colorValue] || (0, import_color.default)(colorValue).hsl().round(2).array();
|
|
741
741
|
parsedColorsCache[colorValue] = parsedColor;
|
|
742
742
|
const [h, s, l, defaultAlphaValue] = parsedColor;
|
|
743
743
|
const nextuiColorVariable = `--${prefix}-${colorName}`;
|
package/dist/plugin.mjs
CHANGED