Web Safe Color
Copy-ready color values
HEX
#66FFCCRGB
rgb(102, 255, 204)HSL
hsl(160, 100%, 70%)HSV
hsv(160, 60%, 100%)CMYK approx.
cmyk(60, 0, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #66FFCC | |
| RGB | rgb(102, 255, 204) | |
| HSL | hsl(160, 100%, 70%) | |
| HSV | hsv(160, 60%, 100%) | |
| CMYK approx. | cmyk(60, 0, 20, 0) | |
| CSS keyword | 66ffcc |
Contrast and classification
LightLightness1.25:1Contrast with white16.74:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#75FFD1
White 30%#94FFDB
White 70%#D1FFF0
White 90%#F0FFFA
Black 10%#5CE6B8
Black 30%#47B38F
Black 70%#1F4D3D
Black 90%#0A1A14
Harmony palettes
Complementary
#990033#B13D64Analogous
#78FFC0#66F9D2Triadic
#FFCC66#CC66FFSplit complementary
#AB2E58#7D002AUsing 66ffcc
66ffcc 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-66ffcc: #66ffcc;
}
.button-primary {
background: var(--color-66ffcc);
color: #000000;
}
$66ffcc: #66ffcc;
// Tailwind arbitrary value
class="bg-[#66ffcc] text-white"