Web Safe Color
Copy-ready color values
HEX
#336666RGB
rgb(51, 102, 102)HSL
hsl(180, 33%, 30%)HSV
hsv(180, 50%, 40%)CMYK approx.
cmyk(50, 0, 0, 60)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #336666 | |
| RGB | rgb(51, 102, 102) | |
| HSL | hsl(180, 33%, 30%) | |
| HSV | hsv(180, 50%, 40%) | |
| CMYK approx. | cmyk(50, 0, 0, 60) | |
| CSS keyword | 336666 |
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#D8B1B1Analogous
#396660#336666Triadic
#666633#663366Split complementary
#D5ABAB#A77D7DUsing 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"