CSS Named Color
Copy-ready color values
HEX
#008080RGB
rgb(0, 128, 128)HSL
hsl(180, 100%, 25%)HSV
hsv(180, 100%, 50%)CMYK approx.
cmyk(100, 0, 0, 50)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #008080 | |
| RGB | rgb(0, 128, 128) | |
| HSL | hsl(180, 100%, 25%) | |
| HSV | hsv(180, 100%, 50%) | |
| CMYK approx. | cmyk(100, 0, 0, 50) | |
| CSS keyword | teal |
Contrast and classification
DarkLightness4.77:1Contrast with white4.40:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1A8D8D
White 30%#4DA6A6
White 70%#B3D9D9
White 90%#E6F2F2
Black 10%#007373
Black 30%#005A5A
Black 70%#002626
Black 90%#000D0D
Harmony palettes
Complementary
#FF7F7F#FF9E9EAnalogous
#0F8071#008080Triadic
#808000#800080Split complementary
#FF9696#D16868Using Teal
Teal 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-teal: #008080;
}
.button-primary {
background: var(--color-teal);
color: #ffffff;
}
$teal: #008080;
// Tailwind arbitrary value
class="bg-[#008080] text-white"