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
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
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.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #3399FF from deepest shade to lightest tint.
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);
}