Web Safe Color
Copy-ready color values
HEX
#00FFCCRGB
rgb(0, 255, 204)HSL
hsl(168, 100%, 50%)HSV
hsv(168, 100%, 100%)CMYK approx.
cmyk(100, 0, 20, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #00FFCC | |
| RGB | rgb(0, 255, 204) | |
| HSL | hsl(168, 100%, 50%) | |
| HSV | hsv(168, 100%, 100%) | |
| CMYK approx. | cmyk(100, 0, 20, 0) | |
| CSS keyword | 00ffcc |
Contrast and classification
DarkLightness1.30:1Contrast with white16.18:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AFFD1
White 30%#4DFFDB
White 70%#B3FFF0
White 90%#E6FFFA
Black 10%#00E6B8
Black 30%#00B38F
Black 70%#004D3D
Black 90%#001A14
Harmony palettes
Complementary
#FF0033#FF3D64Analogous
#1FFFB4#00F9D2Triadic
#FFCC00#CC00FFSplit complementary
#FF2E58#D1002AUsing 00ffcc
00ffcc 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-00ffcc: #00ffcc;
}
.button-primary {
background: var(--color-00ffcc);
color: #000000;
}
$00ffcc: #00ffcc;
// Tailwind arbitrary value
class="bg-[#00ffcc] text-white"