Complete the code to set the font size for better readability.
text.fontSize = [1]Setting the font size to 16 pixels improves readability for most users.
Complete the code to set the font weight for clear text display.
text.fontWeight = '[1]'
Using 'normal' font weight ensures text is neither too thin nor too bold, aiding readability.
Fix the error in the code to set the line height for better readability.
text.lineHeight = [1]Line height should be a number without quotes for proper spacing in Figma.
Fill both blanks to set font family and letter spacing for readability.
text.fontFamily = '[1]' text.letterSpacing = [2]
Arial is a clean font and a small positive letter spacing (0.05) improves readability.
Fill all three blanks to set font style, text alignment, and color for readability.
text.fontStyle = '[1]' text.textAlign = '[2]' text.fill = [3]
Normal font style, left alignment, and black color (#000000) maximize readability.