Complete the code to set the exposure filter value to 0.5 in Figma.
node.fills = [{ type: 'IMAGE', filters: { exposure: [1] } }];Setting exposure to 0.5 increases brightness moderately.
Complete the code to increase contrast by 0.3 in Figma image filters.
node.fills = [{ type: 'IMAGE', filters: { contrast: [1] } }];Contrast value 0.3 increases the difference between light and dark areas.
Fix the error in the code to correctly apply exposure and contrast filters.
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: 0.4 } }];Filter values must be numbers, not strings. Use 0.4 without quotes.
Fill both blanks to set exposure to 0.2 and contrast to 0.6 in Figma filters.
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: [2] } }];Exposure 0.2 slightly brightens, contrast 0.6 increases contrast more strongly.
Fill all three blanks to set exposure to 0.1, contrast to 0.5, and apply saturation 0.8.
node.fills = [{ type: 'IMAGE', filters: { exposure: [1], contrast: [2], saturation: [3] } }];These values brighten slightly, increase contrast moderately, and boost color saturation.
