Skip to content

Commit fee5e1e

Browse files
committed
Fix the range for the brightness filter. It can be > 100%. Safari and Chrome have caught up with the spec.
1 parent fbfc131 commit fee5e1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ window.filterConfigs = {
184184
opacity: builtinPercent("opacity", 50),
185185
saturate: builtinPercent("saturate", 1000, 1000),
186186
sepia: builtinPercent("sepia", 100),
187-
brightness: builtinPercent("brightness", 25),
187+
brightness: builtinPercent("brightness", 200, 1000),
188188
contrast: builtinPercent("contrast", 50),
189189

190190
warp: {

0 commit comments

Comments
 (0)