Web Safe Color

Copy-ready color values

HEX#CCFFCC
RGBrgb(204, 255, 204)
HSLhsl(120, 100%, 90%)
HSVhsv(120, 20%, 100%)
CMYK approx.cmyk(20, 0, 20, 0)

Color value table

FormatValueCopy
HEX#CCFFCC
RGBrgb(204, 255, 204)
HSLhsl(120, 100%, 90%)
HSVhsv(120, 20%, 100%)
CMYK approx.cmyk(20, 0, 20, 0)
CSS keywordccffcc

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
#643D64

Analogous

#D2FFCC
#CCF9D2

Triadic

#FFCCCC
#CCCCFF

Split complementary

#582E58
#2A002A

Using 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"