Web Safe Color

Copy-ready color values

HEX#339966
RGBrgb(51, 153, 102)
HSLhsl(150, 50%, 40%)
HSVhsv(150, 67%, 60%)
CMYK approx.cmyk(67, 0, 33, 40)

Color value table

FormatValueCopy
HEX#339966
RGBrgb(51, 153, 102)
HSLhsl(150, 50%, 40%)
HSVhsv(150, 67%, 60%)
CMYK approx.cmyk(67, 0, 33, 40)
CSS keyword339966

Contrast and classification

DarkLightness3.57:1Contrast with white5.89:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#47A375

White 30%
#70B894

White 70%
#C2E0D1

White 90%
#EBF5F0

Black 10%
#2E8A5C

Black 30%
#246B47

Black 70%
#0F2E1F

Black 90%
#050F0A

Harmony palettes

Complementary

#CC6699
#D88BB1

Analogous

#3F9960
#33936C

Triadic

#996633
#663399

Split complementary

#D582AB
#A7547D

Using 339966

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

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

$339966: #339966;

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