Web Safe Color
Copy-ready color values
HEX
#CCFFCCRGB
rgb(204, 255, 204)HSL
hsl(120, 100%, 90%)HSV
hsv(120, 20%, 100%)CMYK approx.
cmyk(20, 0, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CCFFCC | |
| RGB | rgb(204, 255, 204) | |
| HSL | hsl(120, 100%, 90%) | |
| HSV | hsv(120, 20%, 100%) | |
| CMYK approx. | cmyk(20, 0, 20, 0) | |
| CSS keyword | ccffcc |
Contrast and classification
LightLightness1.12:1Contrast with white18.74:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#D1FFD1
White 30%#DBFFDB
White 70%#F0FFF0
White 90%#FAFFFA
Black 10%#B8E6B8
Black 30%#8FB38F
Black 70%#3D4D3D
Black 90%#141A14
Harmony palettes
Complementary
#330033#643D64Analogous
#D2FFCC#CCF9D2Triadic
#FFCCCC#CCCCFFSplit complementary
#582E58#2A002AUsing Ccffcc
Ccffcc 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-ccffcc: #ccffcc;
}
.button-primary {
background: var(--color-ccffcc);
color: #000000;
}
$ccffcc: #ccffcc;
// Tailwind arbitrary value
class="bg-[#ccffcc] text-white"