Web Safe Color
Copy-ready color values
HEX
#669900RGB
rgb(102, 153, 0)HSL
hsl(80, 100%, 30%)HSV
hsv(80, 100%, 60%)CMYK approx.
cmyk(33, 0, 100, 40)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #669900 | |
| RGB | rgb(102, 153, 0) | |
| HSL | hsl(80, 100%, 30%) | |
| HSV | hsv(80, 100%, 60%) | |
| CMYK approx. | cmyk(33, 0, 100, 40) | |
| CSS keyword | 669900 |
Contrast and classification
DarkLightness3.43:1Contrast with white6.12:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#75A31A
White 30%#94B84D
White 70%#D1E0B3
White 90%#F0F5E6
Black 10%#5C8A00
Black 30%#476B00
Black 70%#1F2E00
Black 90%#0A0F00
Harmony palettes
Complementary
#9966FF#B18BFFAnalogous
#6C990C#668712Triadic
#990066#006699Split complementary
#AB82FF#7D54D1Using 669900
669900 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-669900: #669900;
}
.button-primary {
background: var(--color-669900);
color: #000000;
}
$669900: #669900;
// Tailwind arbitrary value
class="bg-[#669900] text-white"