Web Safe Color
Copy-ready color values
HEX
#669966RGB
rgb(102, 153, 102)HSL
hsl(120, 20%, 50%)HSV
hsv(120, 33%, 60%)CMYK approx.
cmyk(33, 0, 33, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #669966 | |
| RGB | rgb(102, 153, 102) | |
| HSL | hsl(120, 20%, 50%) | |
| HSV | hsv(120, 33%, 60%) | |
| CMYK approx. | cmyk(33, 0, 33, 40) | |
| CSS keyword | 669966 |
Contrast and classification
DarkLightness3.33:1Contrast with white6.31:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#75A375
White 30%#94B894
White 70%#D1E0D1
White 90%#F0F5F0
Black 10%#5C8A5C
Black 30%#476B47
Black 70%#1F2E1F
Black 90%#0A0F0A
Harmony palettes
Complementary
#996699#B18BB1Analogous
#6C9966#66936CTriadic
#996666#666699Split complementary
#AB82AB#7D547DUsing 669966
669966 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-669966: #669966;
}
.button-primary {
background: var(--color-669966);
color: #000000;
}
$669966: #669966;
// Tailwind arbitrary value
class="bg-[#669966] text-white"