We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9415434 commit 20bdb61Copy full SHA for 20bdb61
src/style/colors.ts
@@ -233,7 +233,7 @@ export class Colors {
233
const isWhite = lightness === 100;
234
const lightnessLevel = options?.addDarkestTints ? (isWhite ? 5 : 0) : 20;
235
const lightColorsThreshold = options?.adjustLightness && this.shouldGenerateDarkerPalette(color) ? 5 : 0;
236
- const step = /* options?.addDarkestTints ? 9 : */ 10;
+ const step = options?.addDarkestTints ? 9 : 10;
237
const ls = [colorLightness];
238
239
let l = lightness - step;
0 commit comments