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
Dark Sky Blue #8CBED6 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 Sky Blue #8CBED6 pairs with #D6A48C as its complementary color, and #D68CBE and #BED68C in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}