@webmate-studio/builder 0.2.148 → 0.2.149

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmate-studio/builder",
3
- "version": "0.2.148",
3
+ "version": "0.2.149",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -312,7 +312,7 @@ function buildDarkLightnessRamp(darkBaseL, isLowChroma) {
312
312
  // Chromatische Farben: Steps stärker zur Base hin komprimiert,
313
313
  // damit die dunklen Steps nicht zu dunkel (=farblos) werden
314
314
  const weights = isLowChroma
315
- ? [0.0, 0.04, 0.10, 0.20, 0.34, 0.50, 0.70, 0.92]
315
+ ? [0.0, 0.10, 0.18, 0.28, 0.40, 0.54, 0.72, 0.92]
316
316
  : [0.0, 0.06, 0.14, 0.26, 0.40, 0.55, 0.72, 0.90];
317
317
  const darkSteps = weights.map(w => bottomL + w * range);
318
318