Web Safe Color

Copy-ready color values

HEX#00FFCC
RGBrgb(0, 255, 204)
HSLhsl(168, 100%, 50%)
HSVhsv(168, 100%, 100%)
CMYK approx.cmyk(100, 0, 20, 0)

Color value table

FormatValueCopy
HEX#00FFCC
RGBrgb(0, 255, 204)
HSLhsl(168, 100%, 50%)
HSVhsv(168, 100%, 100%)
CMYK approx.cmyk(100, 0, 20, 0)
CSS keyword00ffcc

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
#FF3D64

Analogous

#1FFFB4
#00F9D2

Triadic

#FFCC00
#CC00FF

Split complementary

#FF2E58
#D1002A

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