CSS Named Color
Copy-ready color values
HEX
#AFEEEERGB
rgb(175, 238, 238)HSL
hsl(180, 65%, 81%)HSV
hsv(180, 26%, 93%)CMYK approx.
cmyk(26, 0, 0, 7)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #AFEEEE | |
| RGB | rgb(175, 238, 238) | |
| HSL | hsl(180, 65%, 81%) | |
| HSV | hsv(180, 26%, 93%) | |
| CMYK approx. | cmyk(26, 0, 0, 7) | |
| CSS keyword | paleturquoise |
Contrast and classification
LightLightness1.29:1Contrast with white16.29:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#B7F0F0
White 30%#C7F3F3
White 70%#E7FAFA
White 90%#F7FDFD
Black 10%#9ED6D6
Black 30%#7BA7A7
Black 70%#354747
Black 90%#121818
Harmony palettes
Complementary
#501111#7A4A4AAnalogous
#B7EEE6#AFEEEETriadic
#EEEEAF#EEAFEESplit complementary
#703C3C#420E0EUsing Paleturquoise
Paleturquoise 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-paleturquoise: #afeeee;
}
.button-primary {
background: var(--color-paleturquoise);
color: #000000;
}
$paleturquoise: #afeeee;
// Tailwind arbitrary value
class="bg-[#afeeee] text-white"