Web Safe Color

Copy-ready color values

HEX#336666
RGBrgb(51, 102, 102)
HSLhsl(180, 33%, 30%)
HSVhsv(180, 50%, 40%)
CMYK approx.cmyk(50, 0, 0, 60)

Color value table

FormatValueCopy
HEX#336666
RGBrgb(51, 102, 102)
HSLhsl(180, 33%, 30%)
HSVhsv(180, 50%, 40%)
CMYK approx.cmyk(50, 0, 0, 60)
CSS keyword336666

Contrast and classification

DarkLightness6.50:1Contrast with white3.23:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#477575

White 30%
#709494

White 70%
#C2D1D1

White 90%
#EBF0F0

Black 10%
#2E5C5C

Black 30%
#244747

Black 70%
#0F1F1F

Black 90%
#050A0A

Harmony palettes

Complementary

#CC9999
#D8B1B1

Analogous

#396660
#336666

Triadic

#666633
#663366

Split complementary

#D5ABAB
#A77D7D

Using 336666

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

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

$336666: #336666;

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