Bird
Raised Fist0
Figmabi_tool

Multiple fills on one element in Figma - Cell-by-Cell Formula Trace

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Concept Flow
Element with multiple fills:
+---------------------+
| Base Fill: #FF0000   |
| Overlay Fill: #0000FF|
| Overlay Opacity: 50% |
+---------------------+
This shows an element in Figma with two fills: a solid red base fill and a blue overlay fill with 50% opacity layered on top.
Formula
Final Color = Base Color * (1 - Opacity) + (Overlay Color * Opacity) Where: Base Color = #FF0000 (red) Overlay Color = #0000FF (blue) Opacity = 50% (0.5)

The formula calculates the final visible color by blending the overlay color at 50% opacity over the base color.

Step-by-Step Trace
StepExpressionEvaluates ToExplanation
1Base Color = #FF0000#FF0000Base fill color is solid red.
2Overlay Color = #0000FF#0000FFOverlay fill color is solid blue.
3Opacity = 50%0.5Overlay fill opacity is 50%, meaning semi-transparent.
4Overlay Color * Opacity = #0000FF * 0.5R:0, G:0, B:128Multiply each RGB channel of blue by 0.5 for semi-transparent overlay.
5Final Color = Base Color * (1 - Opacity) + Overlay Color * Opacity = #FF0000 * 0.5 + R:0,G:0,B:128R:128, G:0, B:128Blend by multiplying base channels by (1-0.5) and adding the semi-transparent overlay channels.
6Final Color in Hex = #800080#800080Convert final RGB values back to hex format.
The final color #800080 is the visible result of layering the fills.
Variable Tracker
VariableValue
Base Color#FF0000
Overlay Color#0000FF
Opacity0.5
Overlay Color * OpacityR:0, G:0, B:128
Final ColorR:128, G:0, B:128
Final Color Hex#800080
Key Moments
What is the base fill color?
How is the overlay color adjusted before combining?
What is the final color after layering the fills?
Sheet Trace Quiz - 3 Questions
Test your understanding
What happens to the overlay color before it is added to the base color?
AIt is multiplied by the opacity
BIt is ignored
CIt is converted to grayscale
DIt is darkened by 50%
Key Result
Multiple fills on one element combine colors by layering the overlay fill with its opacity over the base fill, resulting in a blended final color.
Transcript
We start with a base fill color of solid red (#FF0000). Then we add an overlay fill color of solid blue (#0000FF) with 50% opacity. To find the final color, we multiply the base color's RGB values by (1 - 0.5) and the overlay color's RGB values by 0.5 to account for opacity, then add these values channel-wise. The final RGB values are R:128, G:0, B:128, which convert back to the hex code #800080, which is the visible color on the element after layering the fills.

Practice

(1/5)
1. What does applying multiple fills on one element in Figma allow you to do?
easy
A. Layer different colors and effects on the same shape
B. Create multiple separate shapes automatically
C. Change the shape's size dynamically
D. Export the element as multiple files

Solution

  1. Step 1: Understand the purpose of multiple fills

    Multiple fills let you add several colors or effects stacked on one shape.
  2. Step 2: Compare options

    Only layering colors and effects matches the feature; others describe unrelated functions.
  3. Final Answer:

    Layer different colors and effects on the same shape -> Option A
  4. Quick Check:

    Multiple fills = layering colors/effects [OK]
Hint: Multiple fills stack colors/effects on one shape [OK]
Common Mistakes:
  • Thinking multiple fills create multiple shapes
  • Confusing fills with resizing or exporting
  • Assuming fills change shape geometry
2. Which of the following is the correct way to add multiple fills to a shape in Figma?
easy
A. Right-click the shape and select 'Duplicate Fill'
B. Select the shape, click '+' in the Fill section, then choose colors
C. Drag and drop multiple images directly onto the shape
D. Use the Text tool to add fills

Solution

  1. Step 1: Recall how to add fills in Figma

    You add fills by selecting the shape and clicking '+' in the Fill panel.
  2. Step 2: Evaluate other options

    Duplicating fills, dragging images, or using Text tool are incorrect for adding multiple fills.
  3. Final Answer:

    Select the shape, click '+' in the Fill section, then choose colors -> Option B
  4. Quick Check:

    Add fill = select shape + '+' in Fill [OK]
Hint: Add fills via '+' button in Fill panel [OK]
Common Mistakes:
  • Trying to duplicate fills instead of adding new ones
  • Dragging images without using fill options
  • Using unrelated tools like Text for fills
3. Given a shape with two fills: a red solid fill at 100% opacity and a blue solid fill at 50% opacity on top, what color will the shape mostly appear?
medium
A. Purple (blend of red and blue)
B. Solid red
C. Solid blue at half transparency
D. Solid blue at full opacity

Solution

  1. Step 1: Understand fill layering and opacity

    The top fill is blue at 50% opacity over a red fill at 100% opacity.
  2. Step 2: Visualize color blending

    Blue at half opacity blends with red underneath, creating purple.
  3. Final Answer:

    Purple (blend of red and blue) -> Option A
  4. Quick Check:

    Top fill opacity blends colors = purple [OK]
Hint: Top fill opacity blends colors underneath [OK]
Common Mistakes:
  • Ignoring opacity and expecting solid top color
  • Assuming no blending occurs
  • Confusing opacity with fill order
4. You added multiple fills to a shape but only the bottom fill color is visible. What is the most likely reason?
medium
A. The shape is locked and cannot show multiple fills
B. Figma does not support multiple fills
C. The top fills have 0% opacity or are hidden
D. You must merge fills manually to see them

Solution

  1. Step 1: Check fill visibility and opacity

    If top fills have 0% opacity or are toggled off, only bottom fill shows.
  2. Step 2: Eliminate other options

    Figma supports multiple fills; shapes can be locked but still show fills; no manual merge needed.
  3. Final Answer:

    The top fills have 0% opacity or are hidden -> Option C
  4. Quick Check:

    Invisible top fills cause bottom fill visibility [OK]
Hint: Check top fill opacity and visibility toggles [OK]
Common Mistakes:
  • Thinking multiple fills are unsupported
  • Assuming shape lock hides fills
  • Believing fills must be merged manually
5. You want to create a button with a gradient fill over a solid color fill and an image fill on top. How should you arrange the fills for best visual effect in Figma?
hard
A. All fills stacked randomly; order does not matter
B. Solid color fill on top, image fill in the middle, gradient fill at bottom
C. Gradient fill on top, solid color fill in the middle, image fill at bottom
D. Image fill on top, gradient fill in the middle, solid color fill at bottom

Solution

  1. Step 1: Understand fill layering logic

    Top fills appear above lower fills visually, so image should be on top to be visible.
  2. Step 2: Arrange gradient and solid fills

    Gradient looks best over solid color, so gradient goes above solid color.
  3. Step 3: Confirm fill order

    Order: image (top), gradient (middle), solid color (bottom) for correct layering.
  4. Final Answer:

    Image fill on top, gradient fill in the middle, solid color fill at bottom -> Option D
  5. Quick Check:

    Fill order controls layering = image > gradient > solid [OK]
Hint: Put image top, gradient middle, solid bottom for layering [OK]
Common Mistakes:
  • Placing solid color on top hiding other fills
  • Ignoring fill order effects
  • Assuming fill order does not affect appearance