Brilliant Azure
HEX: #3399FF | Modern Palette
Color Specifications
#3399FF
51, 153, 255
210°, 80% ,100%
80, 40, 0, 0
About Brilliant Azure
Brilliant Azure (#3399FF) is a color with RGB(51, 153, 255) and HSL(210°, 80%, 100%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is Deep Saffron (#FF9933), which creates strong contrast. Its triadic palette includes #FF3399 and #99FF33. The name comes from Brilliant Azure (English).
- HEX: #3399FF
- RGB: 51, 153, 255
- HSL: 210°, 80%, 100%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: Deep Saffron (#FF9933)
- Triadic colors: #FF3399, #99FF33
- The name comes from Brilliant Azure (English).
Live Components
Color Palettes
Brilliant Azure #3399FF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Brilliant Azure #3399FF pairs with Deep Saffron (#FF9933) as its complementary color, and #FF3399 and #99FF33 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Color Characteristics
Accessibility Simulation
#8585FF
#9292FF
#00AAAA
#969696
Frequently Asked Questions
Name, History & Etymology
History
The word 'brilliant' comes from the French 'briller' (to shine), and 'azure' comes from Old French 'azur', ultimately from Persian 'lazhward' (lapis lazuli). The combination 'Brilliant Azure' is a descriptive compound, emphasizing the intensity and brightness of the azure hue. Its popularization is tied to digital color palettes where specific, evocative names are given to hex codes.
First Recorded Use
While 'brilliant' and 'azure' have older individual origins, their specific combination 'Brilliant Azure' as a named color, especially with a hex code like #3399ff, likely emerged with the advent of digital color systems and web design in the late 20th century (1990s).
Cultural Associations
Azure itself is often associated with the sky, sea, divinity, and royalty in various cultures. The addition of 'brilliant' enhances these associations, suggesting purity, clarity, and vibrancy. It evokes feelings of openness, tranquility, and optimism. In digital contexts, it's a popular choice for backgrounds, branding, and UI elements that aim for a fresh and modern feel.
Code Snippets
/* Background */
.element {
background-color: #3399FF;
}
/* Text */
.element {
color: #3399FF;
}
/* Border */
.element {
border: 1px solid #3399FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#3399FF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#3399FF,
#FFFFFF
);
}
// SCSS variable
$brilliant-azure: #3399FF;
// With RGB channels (useful for rgba() usage)
$brilliant-azure-r: 51;
$brilliant-azure-g: 153;
$brilliant-azure-b: 255;
// Usage
.element {
background-color: $brilliant-azure;
color: rgba($brilliant-azure-r, $brilliant-azure-g, $brilliant-azure-b, 0.8);
}