Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to set the exposure filter value to 0.5 in Figma.
Figma
node.fills = [{ type: 'IMAGE', filters: { exposure: [1] } }]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using values greater than 1 causes overexposure.
Negative values darken the image.
✗ Incorrect
Setting exposure to 0.5 increases brightness moderately.
2fill in blank
mediumComplete the code to increase contrast by 0.3 in Figma image filters.
Figma
node.fills = [{ type: 'IMAGE', filters: { contrast: [1] } }]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using negative values reduces contrast instead of increasing it.
✗ Incorrect
Contrast value 0.3 increases the difference between light and dark areas.
3fill in blank
hardFix the error in the code to correctly apply exposure and contrast filters.
Figma
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: 0.4 } }]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using string values causes runtime errors.
Using values outside the valid range.
✗ Incorrect
Filter values must be numbers, not strings. Use 0.4 without quotes.
4fill in blank
hardFill both blanks to set exposure to 0.2 and contrast to 0.6 in Figma filters.
Figma
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: [2] } }]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up exposure and contrast values.
Using negative values unintentionally.
✗ Incorrect
Exposure 0.2 slightly brightens, contrast 0.6 increases contrast more strongly.
5fill in blank
hardFill all three blanks to set exposure to 0.1, contrast to 0.5, and apply saturation 0.8.
Figma
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: [2], saturation: [3] } }]; Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using negative values reduces effect or causes errors.
Confusing saturation with contrast.
✗ Incorrect
These values brighten slightly, increase contrast moderately, and boost color saturation.