@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 +1 -1
- package/src/design-tokens-v2.js +1 -1
package/package.json
CHANGED
package/src/design-tokens-v2.js
CHANGED
|
@@ -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.
|
|
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
|
|