CSS Named Color
Copy-ready color values
HEX
#66CDAARGB
rgb(102, 205, 170)HSL
hsl(160, 51%, 60%)HSV
hsv(160, 50%, 80%)CMYK approx.
cmyk(50, 0, 17, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #66CDAA | |
| RGB | rgb(102, 205, 170) | |
| HSL | hsl(160, 51%, 60%) | |
| HSV | hsv(160, 50%, 80%) | |
| CMYK approx. | cmyk(50, 0, 17, 20) | |
| CSS keyword | mediumaquamarine |
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#B1637EAnalogous
#72CDA2#66C9AETriadic
#CDAA66#AA66CDSplit complementary
#AB5774#7D2946Using 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"