Web Safe Color
Copy-ready color values
HEX
#CCFF66RGB
rgb(204, 255, 102)HSL
hsl(80, 100%, 70%)HSV
hsv(80, 60%, 100%)CMYK approx.
cmyk(20, 0, 60, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCFF66 | |
| RGB | rgb(204, 255, 102) | |
| HSL | hsl(80, 100%, 70%) | |
| HSV | hsv(80, 60%, 100%) | |
| CMYK approx. | cmyk(20, 0, 60, 0) | |
| CSS keyword | ccff66 |
Contrast and classification
LightLightness1.16:1Contrast with white18.06:1Contrast with blackYellow / GreenColor family
Shade and tint preview
White 10%#D1FF75
White 30%#DBFF94
White 70%#F0FFD1
White 90%#FAFFF0
Black 10%#B8E65C
Black 30%#8FB347
Black 70%#3D4D1F
Black 90%#141A0A
Harmony palettes
Complementary
#330099#643DB1Analogous
#D2FF72#CCED78Triadic
#FF66CC#66CCFFSplit complementary
#582EAB#2A007DUsing Ccff66
Ccff66 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-ccff66: #ccff66;
}
.button-primary {
background: var(--color-ccff66);
color: #000000;
}
$ccff66: #ccff66;
// Tailwind arbitrary value
class="bg-[#ccff66] text-white"