0
0
Tableaubi_tool~20 mins

Color and accessibility guidelines in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Color Accessibility Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why is color contrast important for accessibility?
Which of the following best explains why maintaining good color contrast is essential in web design for accessibility?
AIt helps users with color blindness or low vision distinguish text and important elements easily.
BIt makes the website load faster by reducing image sizes.
CIt allows designers to use more colors without restrictions.
DIt ensures the website looks the same on all browsers.
Attempts:
2 left
💡 Hint
Think about users who have difficulty seeing colors clearly.
🔧 Formula Fix
intermediate
2:00remaining
Which CSS snippet correctly sets accessible color contrast?
Given the following CSS options, which one sets text color and background color with sufficient contrast for accessibility?
Acolor: #999999; background-color: #aaaaaa;
Bcolor: #000000; background-color: #ffffff;
Ccolor: #cccccc; background-color: #dddddd;
Dcolor: #777777; background-color: #eeeeee;
Attempts:
2 left
💡 Hint
Look for the highest difference between text and background colors.
rendering
advanced
2:00remaining
What will users with red-green color blindness see?
If a chart uses red and green colors to show two categories, what issue might users with red-green color blindness face?
AThey will see the chart in grayscale automatically.
BThey will see both colors clearly without any problem.
CThey will see the colors as blue and yellow instead.
DThey might not distinguish between the red and green colors, causing confusion.
Attempts:
2 left
💡 Hint
Consider how red-green color blindness affects color perception.
selector
advanced
2:00remaining
Which CSS selector targets elements with poor color contrast?
Which CSS selector can be used to style elements that have low contrast colors for better accessibility?
A:is(.low-contrast, .poor-contrast) { outline: 2px solid red; }
B.container .text { background-color: #fff; }
Cdiv > p { color: #000; }
Da:hover { text-decoration: underline; }
Attempts:
2 left
💡 Hint
Look for a selector that groups classes related to contrast issues.
layout
expert
3:00remaining
How to design a color-blind friendly dashboard layout?
You are designing a dashboard with multiple charts. Which approach best ensures color accessibility for users with color blindness?
AUse only red and green colors for all charts to keep it simple.
BUse very light pastel colors for all charts to reduce eye strain.
CUse patterns or textures along with colors to differentiate data.
DUse flashing colors to attract attention to important data.
Attempts:
2 left
💡 Hint
Think about how to help users who cannot rely on color alone.