Medium Sky Blue
HEX: #80DAEB | Modern Palette
On White
1.60:1
FAIL
On Black
13.15:1
PASS
Color Specifications
HEX
#80DAEB
RGB
128, 218, 235
HSL
189°, 45% ,92%
CMYK
45.53, 7.23, 0, 7.84
About Medium Sky Blue
Medium Sky Blue (#80DAEB) is a color with RGB(128, 218, 235) and HSL(189.53°, 45.53%, 92.16%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #EB9180, which creates strong contrast. Its triadic palette includes #EB80DA and #DAEB80.
- HEX: #80DAEB
- RGB: 128, 218, 235
- HSL: 189.53°, 45.53%, 92.16%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #EB9180
- Triadic colors: #EB80DA, #DAEB80
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
Medium Sky Blue #80DAEB is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Monochromatic
Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent
Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous
Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1
Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.
Color Harmonies
Medium Sky Blue #80DAEB pairs with #EB9180 as its complementary color, and #EB80DA and #DAEB80 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#C5C5EC
Protanopia
#D3D3EB
Tritanopia
#7BDCDC
Achromatopsia
#CDCDCD
Frequently Asked Questions
Medium Sky Blue (#80DAEB) is a color with RGB(128, 218, 235) and HSL(189.53°, 45.53%, 92.16%).
#80DAEB pairs strongly with #EB9180 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#80DAEB is suitable for Text, Button, Background and works well with Cool styles.
Code Snippets
/* Background */
.element {
background-color: #80DAEB;
}
/* Text */
.element {
color: #80DAEB;
}
/* Border */
.element {
border: 1px solid #80DAEB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#80DAEB,
#F4E5E2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#80DAEB,
#F4E5E2
);
}
// SCSS variable
$medium-sky-blue: #80DAEB;
// With RGB channels (useful for rgba() usage)
$medium-sky-blue-r: 128;
$medium-sky-blue-g: 218;
$medium-sky-blue-b: 235;
// Usage
.element {
background-color: $medium-sky-blue;
color: rgba($medium-sky-blue-r, $medium-sky-blue-g, $medium-sky-blue-b, 0.8);
}