CSS Named Color
Copy-ready color values
HEX
#48D1CCRGB
rgb(72, 209, 204)HSL
hsl(178, 60%, 55%)HSV
hsv(178, 66%, 82%)CMYK approx.
cmyk(66, 0, 2, 18)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #48D1CC | |
| RGB | rgb(72, 209, 204) | |
| HSL | hsl(178, 60%, 55%) | |
| HSV | hsv(178, 66%, 82%) | |
| CMYK approx. | cmyk(66, 0, 2, 18) | |
| CSS keyword | mediumturquoise |
Contrast and classification
LightLightness1.86:1Contrast with white11.27:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#5AD6D1
White 30%#7FDFDB
White 70%#C8F1F0
White 90%#EDFAFA
Black 10%#41BCB8
Black 30%#32928F
Black 70%#163F3D
Black 90%#071514
Harmony palettes
Complementary
#B72E33#C86064Analogous
#58D1BC#48D0CDTriadic
#D1CC48#CC48D1Split complementary
#C45458#96262AUsing Mediumturquoise
Mediumturquoise 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-mediumturquoise: #48d1cc;
}
.button-primary {
background: var(--color-mediumturquoise);
color: #000000;
}
$mediumturquoise: #48d1cc;
// Tailwind arbitrary value
class="bg-[#48d1cc] text-white"