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?
Pure red in hex color code is represented by full red and zero green and blue.
The hex code #FF0000 represents pure red with full opacity in Figma 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?
Opacity controls how see-through a color is.
Setting 50% opacity means the blue color is half transparent, so you can see the background behind the shape.
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?
Use SWITCH with TRUE() for multiple conditions in order.
Option B uses SWITCH(TRUE()) to check conditions in order and assign colors correctly based on average sales.
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?
Check if Sales is aggregated or a column reference.
In DAX, you must aggregate columns in measures. Using Sales without aggregation causes an error, preventing color application.
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?
Dynamic colors require relationships and measures referencing target values.
Option D enables dynamic color coding by linking sales and targets tables and using measures to determine colors based on target comparisons.