Cerulean Blue
HEX: #2A52BE | Modern Palette
Color Specifications
#2A52BE
42, 82, 190
223°, 77% ,74%
77.89, 56.84, 0, 25.49
About Cerulean Blue
Cerulean Blue (#2A52BE) is a color with RGB(42, 82, 190) and HSL(223.78°, 77.89%, 74.51%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #BE962A, which creates strong contrast. Its triadic palette includes #BE2A52 and #52BE2A. The name comes from caeruleus (Latin).
- HEX: #2A52BE
- RGB: 42, 82, 190
- HSL: 223.78°, 77.89%, 74.51%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #BE962A
- Triadic colors: #BE2A52, #52BE2A
- The name comes from caeruleus (Latin).
Live Components
Color Palettes
Cerulean Blue #2A52BE 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
Cerulean Blue #2A52BE pairs with #BE962A as its complementary color, and #BE2A52 and #52BE2A in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The Latin 'caeruleus' was used to describe various shades of blue, often associated with the sky or sea. The specific pigment 'Cerulean Blue' (cobalt(II) stannate) was first synthesized in 1805 by Andreas Höpfner in Switzerland, but it wasn't widely available to artists until 1860 when George Rowney introduced it in England. It quickly became popular for its pure, bright blue hue and excellent permanence, especially for skies and water, as it doesn't green with age like some other blues.
First Recorded Use
The word 'cerulean' itself appeared in English in the early 17th century. The pigment 'cerulean blue' was developed much later.
Cultural Associations
Cerulean blue is often associated with clear skies, deep oceans, and a sense of calm or serenity. It gained significant recognition in art, particularly among Impressionist painters for its ability to capture the vibrancy of natural light. It also famously entered popular culture through the film 'The Devil Wears Prada,' where a monologue explains its historical journey from high fashion to mass market, highlighting its pervasive influence.
Code Snippets
/* Background */
.element {
background-color: #2A52BE;
}
/* Text */
.element {
color: #2A52BE;
}
/* Border */
.element {
border: 1px solid #2A52BE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#2A52BE,
#F1D58B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#2A52BE,
#F1D58B
);
}
// SCSS variable
$cerulean-blue: #2A52BE;
// With RGB channels (useful for rgba() usage)
$cerulean-blue-r: 42;
$cerulean-blue-g: 82;
$cerulean-blue-b: 190;
// Usage
.element {
background-color: $cerulean-blue;
color: rgba($cerulean-blue-r, $cerulean-blue-g, $cerulean-blue-b, 0.8);
}