Web Safe Color

Copy-ready color values

HEX#006666
RGBrgb(0, 102, 102)
HSLhsl(180, 100%, 20%)
HSVhsv(180, 100%, 40%)
CMYK approx.cmyk(100, 0, 0, 60)

Color value table

FormatValueCopy
HEX#006666
RGBrgb(0, 102, 102)
HSLhsl(180, 100%, 20%)
HSVhsv(180, 100%, 40%)
CMYK approx.cmyk(100, 0, 0, 60)
CSS keyword006666

Contrast and classification

DarkLightness6.79:1Contrast with white3.09:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A7575

White 30%
#4D9494

White 70%
#B3D1D1

White 90%
#E6F0F0

Black 10%
#005C5C

Black 30%
#004747

Black 70%
#001F1F

Black 90%
#000A0A

Harmony palettes

Complementary

#FF9999
#FFB1B1

Analogous

#0C665A
#006666

Triadic

#666600
#660066

Split complementary

#FFABAB
#D17D7D

Using 006666

006666 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-006666: #006666;
}

.button-primary {
  background: var(--color-006666);
  color: #ffffff;
}

$006666: #006666;

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