Dark Sky Blue
HEX: #8CBED6 | Modern Palette
Color Specifications
#8CBED6
140, 190, 214
199°, 34% ,83%
34.58, 11.21, 0, 16.08
About Dark Sky Blue
Dark Sky Blue (#8CBED6) is a color with RGB(140, 190, 214) and HSL(199.46°, 34.58%, 83.92%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #D6A48C, which creates strong contrast. Its triadic palette includes #D68CBE and #BED68C.
- HEX: #8CBED6
- RGB: 140, 190, 214
- HSL: 199.46°, 34.58%, 83.92%
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #D6A48C
- Triadic colors: #D68CBE, #BED68C
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 #8CBED6 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#B1B1D7
#B9B9D6
#87C1C1
#B7B7B7
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #8CBED6;
}
/* Text */
.element {
color: #8CBED6;
}
/* Border */
.element {
border: 1px solid #8CBED6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8CBED6,
#E4D1C8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8CBED6,
#E4D1C8
);
}
// SCSS variable
$dark-sky-blue: #8CBED6;
// With RGB channels (useful for rgba() usage)
$dark-sky-blue-r: 140;
$dark-sky-blue-g: 190;
$dark-sky-blue-b: 214;
// Usage
.element {
background-color: $dark-sky-blue;
color: rgba($dark-sky-blue-r, $dark-sky-blue-g, $dark-sky-blue-b, 0.8);
}