CSS Named Color

Copy-ready color values

HEX#66CDAA
RGBrgb(102, 205, 170)
HSLhsl(160, 51%, 60%)
HSVhsv(160, 50%, 80%)
CMYK approx.cmyk(50, 0, 17, 20)

Color value table

FormatValueCopy
HEX#66CDAA
RGBrgb(102, 205, 170)
HSLhsl(160, 51%, 60%)
HSVhsv(160, 50%, 80%)
CMYK approx.cmyk(50, 0, 17, 20)
CSS keywordmediumaquamarine

Contrast and classification

LightLightness1.93:1Contrast with white10.88:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#75D2B3

White 30%
#94DCC4

White 70%
#D1F0E6

White 90%
#F0FAF7

Black 10%
#5CB999

Black 30%
#479077

Black 70%
#1F3E33

Black 90%
#0A1511

Harmony palettes

Complementary

#993255
#B1637E

Analogous

#72CDA2
#66C9AE

Triadic

#CDAA66
#AA66CD

Split complementary

#AB5774
#7D2946

Using Mediumaquamarine

Mediumaquamarine 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-mediumaquamarine: #66cdaa;
}

.button-primary {
  background: var(--color-mediumaquamarine);
  color: #000000;
}

$mediumaquamarine: #66cdaa;

// Tailwind arbitrary value
class="bg-[#66cdaa] text-white"