CSS Named Color

Copy-ready color values

HEX#008B8B
RGBrgb(0, 139, 139)
HSLhsl(180, 100%, 27%)
HSVhsv(180, 100%, 55%)
CMYK approx.cmyk(100, 0, 0, 45)

Color value table

FormatValueCopy
HEX#008B8B
RGBrgb(0, 139, 139)
HSLhsl(180, 100%, 27%)
HSVhsv(180, 100%, 55%)
CMYK approx.cmyk(100, 0, 0, 45)
CSS keyworddarkcyan

Contrast and classification

DarkLightness4.15:1Contrast with white5.07:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A9797

White 30%
#4DAEAE

White 70%
#B3DCDC

White 90%
#E6F3F3

Black 10%
#007D7D

Black 30%
#006161

Black 70%
#002A2A

Black 90%
#000E0E

Harmony palettes

Complementary

#FF7474
#FF9595

Analogous

#118B7A
#008B8B

Triadic

#8B8B00
#8B008B

Split complementary

#FF8D8D
#D15F5F

Using Darkcyan

Darkcyan 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-darkcyan: #008b8b;
}

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

$darkcyan: #008b8b;

// Tailwind arbitrary value
class="bg-[#008b8b] text-white"