0
0
Figmabi_tool

Linear gradient in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Concept Flow
Start Color (#FF0000) --> Linear Gradient --> End Color (#0000FF)
Angle: 90 degrees (left to right)
The linear gradient is created by blending the start color to the end color along the specified angle.
Formula
linear-gradient(90deg, #FF0000, #0000FF)

This code defines a linear gradient from red to blue horizontally.

Step-by-Step Trace
StepExpressionEvaluates ToExplanation
1Angle = 90 degrees90 degreesDefines gradient direction from left to right.
2Start Color = #FF0000 (red)#FF0000Gradient starts with red color.
3End Color = #0000FF (blue)#0000FFGradient ends with blue color.
4Combine angle and colorslinear-gradient(90deg, #FF0000, #0000FF)Creates the horizontal gradient from red to blue.
The final linear gradient smoothly transitions from red on the left to blue on the right at 90 degrees.
Variable Tracker
VariableValue
Angle90 degrees
Start Color#FF0000
End Color#0000FF
Key Moments
What does the angle 90 degrees specify?
Which color does the gradient start with?
What is the final formula combining all parts?
Sheet Trace Quiz - 3 Questions
Test your understanding
What direction does a 90 degree angle represent in a linear gradient?
ATop to bottom
BLeft to right
CDiagonal
DCircular
Key Result
A linear gradient blends two colors smoothly along a specified angle, here from red to blue horizontally at 90 degrees.
Transcript
We start with the angle 90 degrees, which means the gradient goes from left to right. The start color is red (#FF0000), and the end color is blue (#0000FF). Combining these, the formula linear-gradient(90deg, #FF0000, #0000FF) creates a smooth horizontal gradient from red to blue.