CSS Named Color
Copy-ready color values
HEX
#5F9EA0RGB
rgb(95, 158, 160)HSL
hsl(182, 25%, 50%)HSV
hsv(182, 41%, 63%)CMYK approx.
cmyk(41, 1, 0, 37)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #5F9EA0 | |
| RGB | rgb(95, 158, 160) | |
| HSL | hsl(182, 25%, 50%) | |
| HSV | hsv(182, 41%, 63%) | |
| CMYK approx. | cmyk(41, 1, 0, 37) | |
| CSS keyword | cadetblue |
Contrast and classification
DarkLightness3.05:1Contrast with white6.88:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#6FA8AA
White 30%#8FBBBD
White 70%#CFE2E3
White 90%#EFF5F6
Black 10%#568E90
Black 30%#436F70
Black 70%#1D2F30
Black 90%#0A1010
Harmony palettes
Complementary
#A0615F#B78785Analogous
#679E98#5F9EA0Triadic
#9EA05F#A05F9ESplit complementary
#B17D7C#83504EUsing Cadetblue
Cadetblue works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-cadetblue: #5f9ea0;
}
.button-primary {
background: var(--color-cadetblue);
color: #000000;
}
$cadetblue: #5f9ea0;
// Tailwind arbitrary value
class="bg-[#5f9ea0] text-white"