CSS Named Color

Copy-ready color values

HEX#008080
RGBrgb(0, 128, 128)
HSLhsl(180, 100%, 25%)
HSVhsv(180, 100%, 50%)
CMYK approx.cmyk(100, 0, 0, 50)

Color value table

FormatValueCopy
HEX#008080
RGBrgb(0, 128, 128)
HSLhsl(180, 100%, 25%)
HSVhsv(180, 100%, 50%)
CMYK approx.cmyk(100, 0, 0, 50)
CSS keywordteal

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

Analogous

#0F8071
#008080

Triadic

#808000
#800080

Split complementary

#FF9696
#D16868

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