Dark Cerulean
HEX: #08457E | Modern Palette
Color Specifications
#08457E
8, 69, 126
208°, 93% ,49%
93.65, 45.24, 0, 50.59
About Dark Cerulean
Dark Cerulean (#08457E) is a color with RGB(8, 69, 126) and HSL(208.98°, 93.65%, 49.41%). It is commonly associated with Bold moods. In design, it fits Vivid, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #7E4108, which creates strong contrast. Its triadic palette includes #7E0845 and #457E08.
- HEX: #08457E
- RGB: 8, 69, 126
- HSL: 208.98°, 93.65%, 49.41%
- Mood: Bold
- Style: Vivid, Cool
- Use case: Text, Button, Accent
- Complementary color: #7E4108
- Triadic colors: #7E0845, #457E08
Live Components
Color Palettes
Dark Cerulean #08457E 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
Dark Cerulean #08457E pairs with #7E4108 as its complementary color, and #7E0845 and #457E08 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #08457E;
}
/* Text */
.element {
color: #08457E;
}
/* Border */
.element {
border: 1px solid #08457E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#08457E,
#F47A08
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#08457E,
#F47A08
);
}
// SCSS variable
$dark-cerulean: #08457E;
// With RGB channels (useful for rgba() usage)
$dark-cerulean-r: 8;
$dark-cerulean-g: 69;
$dark-cerulean-b: 126;
// Usage
.element {
background-color: $dark-cerulean;
color: rgba($dark-cerulean-r, $dark-cerulean-g, $dark-cerulean-b, 0.8);
}