0
0
Figmabi_tool~20 mins

Solid fills in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Solid Fill Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
1:30remaining
Identify the correct solid fill color code

You have a rectangle with a solid fill color set in Figma. The color is a pure red with full opacity. What is the correct hex color code for this solid fill?

A#FF0000
B#00FF00
C#0000FF
D#FFFF00
Attempts:
2 left
💡 Hint

Pure red in hex color code is represented by full red and zero green and blue.

🧠 Conceptual
intermediate
1:30remaining
Understanding opacity in solid fills

In Figma, if you set a solid fill color to blue (#0000FF) with 50% opacity, what will be the visual effect on the shape?

AThe shape will appear as a semi-transparent blue, showing background behind it.
BThe shape will appear green due to opacity blending.
CThe shape will be fully opaque blue with no transparency.
DThe shape will disappear completely.
Attempts:
2 left
💡 Hint

Opacity controls how see-through a color is.

dax_lod_result
advanced
2:00remaining
Calculate average sales with solid fill color coding

You have a sales report with a measure Average Sales. You want to create a solid fill color in your BI dashboard that turns green if average sales are above 1000, yellow if between 500 and 1000, and red if below 500. Which DAX expression correctly defines this color logic?

AColor = IF([Average Sales] < 500, "Red", IF([Average Sales] <= 1000, "Yellow", "Green"))
BColor = SWITCH(TRUE(), [Average Sales] > 1000, "Green", [Average Sales] >= 500, "Yellow", "Red")
CColor = IF([Average Sales] > 1000, "Green", IF([Average Sales] >= 500, "Yellow", "Red"))
DColor = IF([Average Sales] >= 1000, "Green", IF([Average Sales] > 500, "Yellow", "Red"))
Attempts:
2 left
💡 Hint

Use SWITCH with TRUE() for multiple conditions in order.

🔧 Formula Fix
advanced
2:00remaining
Identify the error in solid fill color application

In a BI tool, you wrote this DAX measure to set a solid fill color based on sales:
FillColor = IF(Sales > 1000, "#00FF00", IF(Sales > 500, "#FFFF00", "#FF0000"))
But the color does not apply correctly. What is the likely cause?

AThe IF function cannot be nested in DAX.
BHex color codes must be in uppercase letters only.
CThe Sales column is not aggregated, causing a row context error.
DThe color codes are invalid hex codes.
Attempts:
2 left
💡 Hint

Check if Sales is aggregated or a column reference.

data_modeling
expert
3:00remaining
Designing a color-coded sales dashboard with solid fills

You want to create a sales dashboard that uses solid fill colors to highlight sales performance by region. The colors should be dynamic based on sales targets stored in a separate table. Which data modeling approach is best to enable this dynamic solid fill color coding?

ACreate a single table merging sales and targets with static color columns.
BStore color codes directly in the sales table and hardcode them in the dashboard visuals.
CUse disconnected tables with manual slicers to select colors for each region.
DCreate a relationship between sales and targets tables, then use a calculated measure with LOOKUPVALUE to get target and apply color logic.
Attempts:
2 left
💡 Hint

Dynamic colors require relationships and measures referencing target values.