Create harmonious color palettes for your designs.
#3398db
#2283c3
#1c6ca0
#16547e
#103d5b
#0a2638
#040f16
#000000
#000000
#000000
:root {
}
| Preview | HEX | RGB |
|---|---|---|
#3398db |
|
|
#2283c3 |
|
|
#1c6ca0 |
|
|
#16547e |
|
|
#103d5b |
|
|
#0a2638 |
|
|
#040f16 |
|
|
#000000 |
|
|
#000000 |
|
|
#000000 |
|
Color theory is the science and art of using color. It explains how humans perceive color, how colors mix, match, or contrast, and the messages colors communicate. A strong color palette creates visual harmony and reinforces your brand identity.
This tool generates palettes based on established color harmony principles:
Variations of a single hue using different saturations and lightness values.
Best for: Clean, elegant designs; minimalist aesthetics; creating depth without distraction
Colors opposite each other on the color wheel (e.g., blue and orange).
Best for: High contrast designs; call-to-action elements; creating visual tension
Colors adjacent on the color wheel (e.g., blue, blue-green, green).
Best for: Harmonious, soothing designs; nature-inspired themes; cohesive backgrounds
Three colors evenly spaced on the color wheel (120° apart).
Best for: Vibrant, playful designs; children's products; bold branding
The color wheel organizes colors by their relationships:
| Role | Percentage | Usage |
|---|---|---|
| Primary/Dominant | 60% | Background, large areas |
| Secondary | 30% | Headers, cards, sections |
| Accent | 10% | CTAs, highlights, links |
| Color | Associations | Common Uses |
|---|---|---|
| Red | Energy, passion, urgency, danger | Sale buttons, alerts, food brands |
| Blue | Trust, stability, calm, professionalism | Finance, healthcare, technology |
| Green | Growth, health, nature, success | Eco brands, success messages, finance |
| Yellow | Optimism, warmth, attention | Warnings, highlights, children's products |
| Purple | Luxury, creativity, mystery | Beauty, premium brands, arts |
| Orange | Energy, enthusiasm, playfulness | CTAs, sports, entertainment |
When building color palettes, consider accessibility:
Store your palette in CSS custom properties for easy maintenance:
:root {
--color-primary: #4285f4;
--color-primary-dark: #3367d6;
--color-primary-light: #7baaf7;
--color-secondary: #ea4335;
--color-accent: #fbbc04;
/* Semantic colors */
--color-success: #34a853;
--color-warning: #fbbc04;
--color-error: #ea4335;
}
.btn-primary {
background-color: var(--color-primary);
}
.btn-primary:hover {
background-color: var(--color-primary-dark);
}
HEX: #FF5733
RGB: rgb(255, 87, 51)
HSL: hsl(14, 100%, 60%)
RGBA: rgba(255, 87, 51, 0.8)