Web Safe Color
Copy-ready color values
HEX
#CCFF99RGB
rgb(204, 255, 153)HSL
hsl(90, 100%, 80%)HSV
hsv(90, 40%, 100%)CMYK approx.
cmyk(20, 0, 40, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCFF99 | |
| RGB | rgb(204, 255, 153) | |
| HSL | hsl(90, 100%, 80%) | |
| HSV | hsv(90, 40%, 100%) | |
| CMYK approx. | cmyk(20, 0, 40, 0) | |
| CSS keyword | ccff99 |
Contrast and classification
LightLightness1.15:1Contrast with white18.33:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#D1FFA3
White 30%#DBFFB8
White 70%#F0FFE0
White 90%#FAFFF5
Black 10%#B8E68A
Black 30%#8FB36B
Black 70%#3D4D2E
Black 90%#141A0F
Harmony palettes
Complementary
#330066#643D8BAnalogous
#D2FF9F#CCF3A5Triadic
#FF99CC#99CCFFSplit complementary
#582E82#2A0054Using Ccff99
Ccff99 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-ccff99: #ccff99;
}
.button-primary {
background: var(--color-ccff99);
color: #000000;
}
$ccff99: #ccff99;
// Tailwind arbitrary value
class="bg-[#ccff99] text-white"