Skip to content

Commit f30d2b7

Browse files
author
Joshua Stübner
committed
fix(ui-gen): fix lightness token faulty names
1 parent 06b3d80 commit f30d2b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/ui-generator/src/modules/colors/components/GeneralColorSettings.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<SettingsInput
1313
label="Minimum Lightness"
1414
bind:value={$configStore.lightnessMin}
15-
token="--lightness-max"
15+
token="--lightness-min"
1616
max="1"
1717
min="0"
1818
step="0.01"
1919
></SettingsInput>
2020
<SettingsInput
2121
label="Maximum Lightness"
22-
bind:value={$configStore!.lightnessMax}
23-
token="--lightness-min"
22+
bind:value={$configStore.lightnessMax}
23+
token="--lightness-max"
2424
max="1"
2525
min="0"
2626
step="0.01"

0 commit comments

Comments
 (0)