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
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 #08457E from deepest shade to lightest tint.
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);
}