Quiz 2
Registry Synced

Color Theory

124 words
1 min read

Reading compass

Now · 3.1 Color Spaces

Color Theory

3.1 Color Spaces

SpaceComponentsBest For
RGBRed, Green, BlueScreens
HSLHue, Saturation, LightnessIntuitive adjustments
CMYKCyan, Magenta, Yellow, BlackPrint

3.2 Color Schemes

SchemeDescriptionWhen to Use
SequentialLight to dark of one hueOrdered data (0→100)
DivergingTwo hues meeting at neutralData with a meaningful midpoint
QualitativeDistinct huesCategorical data
python
import matplotlib.pyplot as plt
import seaborn as sns
# Sequential palette
sns.color_palette("Blues", 5)
# Diverging palette
sns.color_palette("RdBu", 7)
# Qualitative palette
sns.color_palette("Set2", 8)
# Apply to any plot
plt.figure(figsize=(8, 4))
plt.scatter(range(10), range(10), c=range(10), cmap='viridis')
plt.colorbar(label='Value')
plt.show()

3.3 Accessibility

  • Colorblind-friendly palettes: Use viridis, cividis, or colorblind10
  • Don't rely solely on color: Use shapes, patterns, or direct labeling
  • Sufficient contrast: Text should stand out from background
  • Test: Simulate colorblind vision using daltonize library Join Discord PreviousChart SelectionNextAccessible Design
Document outline

Keep your place and jump directly to a heading.

Table of Contents
System Normal // Awaiting Context

Intelligence Hub

Navigate the knowledge graph to generate context. The Hub adapts dynamically to surface backlinks, related notes, and metadata insights.