0
0
Figmabi_tool~10 mins

Drop shadow effect in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data represents the parameters for applying a drop shadow effect to a rectangle shape in Figma. The X and Y offsets move the shadow right and down, the blur radius softens the shadow edges, and the color defines the shadow's appearance.

CellValue
A1Shape
B1Shadow X Offset
C1Shadow Y Offset
D1Shadow Blur Radius
E1Shadow Color
A2Rectangle
B25
C25
D210
E2rgba(0,0,0,0.5)
Formula Trace
Drop Shadow = OffsetX + OffsetY + Blur + Color
Step 1: OffsetX = 5
Step 2: OffsetY = 5
Step 3: Blur Radius = 10
Step 4: Color = rgba(0,0,0,0.5)
Step 5: Combine all: Drop Shadow = OffsetX(5), OffsetY(5), Blur(10), Color(rgba(0,0,0,0.5))
Cell Reference Map
   A       B       C       D       E
1 Shape  Shadow X Offset Shadow Y Offset  Blur   Color
2 Rectangle     5       5      10  rgba(0,0,0,0.5)

References: B2, C2, D2, E2 feed into the drop shadow effect calculation.
The formula uses the shadow parameters from cells B2 (X offset), C2 (Y offset), D2 (blur radius), and E2 (color) to create the drop shadow effect.
Result
   A       B       C       D       E       F
1 Shape  Shadow X Offset Shadow Y Offset  Blur   Color   Result
2 Rectangle     5       5      10  rgba(0,0,0,0.5) Drop shadow: 5px right, 5px down, 10px blur, black 50% opacity
The final result cell (F2) shows the combined drop shadow effect parameters applied to the rectangle shape.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the Shadow X Offset value control?
AThe shadow color transparency
BHow blurry the shadow edges are
CHow far the shadow moves right or left
DHow far the shadow moves up or down
Key Result
Drop shadow effect combines horizontal offset, vertical offset, blur radius, and color transparency.