Web Safe Color
Copy-ready color values
HEX
#009966RGB
rgb(0, 153, 102)HSL
hsl(160, 100%, 30%)HSV
hsv(160, 100%, 60%)CMYK approx.
cmyk(100, 0, 33, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #009966 | |
| RGB | rgb(0, 153, 102) | |
| HSL | hsl(160, 100%, 30%) | |
| HSV | hsv(160, 100%, 60%) | |
| CMYK approx. | cmyk(100, 0, 33, 40) | |
| CSS keyword | 009966 |
Contrast and classification
DarkLightness3.65:1Contrast with white5.75:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AA375
White 30%#4DB894
White 70%#B3E0D1
White 90%#E6F5F0
Black 10%#008A5C
Black 30%#006B47
Black 70%#002E1F
Black 90%#000F0A
Harmony palettes
Complementary
#FF6699#FF8BB1Analogous
#12995A#00936CTriadic
#996600#660099Split complementary
#FF82AB#D1547DUsing 009966
009966 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-009966: #009966;
}
.button-primary {
background: var(--color-009966);
color: #000000;
}
$009966: #009966;
// Tailwind arbitrary value
class="bg-[#009966] text-white"