0
0
Figmabi_tool~20 mins

Color picker and hex values in Figma - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Color Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Understanding Hex Color Codes

What does the hex color code #FF5733 represent in terms of red, green, and blue values?

ARed: 51, Green: 87, Blue: 255
BRed: 87, Green: 255, Blue: 51
CRed: 255, Green: 87, Blue: 51
DRed: 255, Green: 51, Blue: 87
Attempts:
2 left
💡 Hint

Remember that hex codes are in the format #RRGGBB, where each pair represents red, green, and blue in hexadecimal.

dax_lod_result
intermediate
2:00remaining
Using Hex Colors in Dashboard Visuals

You want to set a bar chart color dynamically in Power BI using a hex color code stored in a table column named ColorHex. Which DAX measure correctly converts the hex code #1E90FF to a color for the visual?

AColorMeasure = SELECTEDVALUE(Table[ColorHex])
BColorMeasure = "#1E90FF"
CColorMeasure = FORMAT(Table[ColorHex], "Color")
DColorMeasure = HEX2DEC(Table[ColorHex])
Attempts:
2 left
💡 Hint

Power BI visuals accept hex color codes as text strings for color formatting.

visualization
advanced
1:30remaining
Best Practice for Color Contrast in Dashboards

Which option best describes a practice to ensure text is readable over colored backgrounds chosen via hex codes in dashboards?

AUse colors with high contrast ratios and test with tools to ensure accessibility.
BUse any bright color as background and white text always.
CUse colors randomly to keep the dashboard colorful and engaging.
DUse only dark colors for backgrounds and ignore text color contrast.
Attempts:
2 left
💡 Hint

Think about how people with vision difficulties read text on colored backgrounds.

🎯 Scenario
advanced
2:00remaining
Applying Hex Colors in Conditional Formatting

You want to highlight sales values above target in green (#28A745) and below target in red (#DC3545) using hex colors in a Power BI table. Which approach correctly applies this conditional formatting?

AManually set cell colors in the table without using measures or hex codes.
BApply conditional formatting only on the background color without using hex codes.
CUse RGB decimal values instead of hex codes in conditional formatting rules.
DCreate a measure returning hex color based on sales vs target, then use it in conditional formatting for font color.
Attempts:
2 left
💡 Hint

Think about how dynamic colors can be applied based on data values.

🔧 Formula Fix
expert
1:30remaining
Troubleshooting Hex Color Usage in Dashboard

A dashboard developer uses the hex color code #GGHHII in a visual's color setting. What will happen when the dashboard renders?

AThe color will render as black because invalid hex codes default to black.
BThe dashboard will show an error or default color because <code>#GGHHII</code> is not a valid hex code.
CThe dashboard will ignore the color and leave the visual uncolored.
DThe dashboard will convert the invalid hex to the closest valid color automatically.
Attempts:
2 left
💡 Hint

Hex color codes must use digits 0-9 and letters A-F only.