CSS Named Color

Copy-ready color values

HEX#AFEEEE
RGBrgb(175, 238, 238)
HSLhsl(180, 65%, 81%)
HSVhsv(180, 26%, 93%)
CMYK approx.cmyk(26, 0, 0, 7)

Color value table

FormatValueCopy
HEX#AFEEEE
RGBrgb(175, 238, 238)
HSLhsl(180, 65%, 81%)
HSVhsv(180, 26%, 93%)
CMYK approx.cmyk(26, 0, 0, 7)
CSS keywordpaleturquoise

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
#7A4A4A

Analogous

#B7EEE6
#AFEEEE

Triadic

#EEEEAF
#EEAFEE

Split complementary

#703C3C
#420E0E

Using 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"