Web Safe Color

Copy-ready color values

HEX#00FF66
RGBrgb(0, 255, 102)
HSLhsl(144, 100%, 50%)
HSVhsv(144, 100%, 100%)
CMYK approx.cmyk(100, 0, 60, 0)

Color value table

FormatValueCopy
HEX#00FF66
RGBrgb(0, 255, 102)
HSLhsl(144, 100%, 50%)
HSVhsv(144, 100%, 100%)
CMYK approx.cmyk(100, 0, 60, 0)
CSS keyword00ff66

Contrast and classification

DarkLightness1.36:1Contrast with white15.50:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1AFF75

White 30%
#4DFF94

White 70%
#B3FFD1

White 90%
#E6FFF0

Black 10%
#00E65C

Black 30%
#00B347

Black 70%
#004D1F

Black 90%
#001A0A

Harmony palettes

Complementary

#FF0099
#FF3DB1

Analogous

#1FFF5A
#00ED78

Triadic

#FF6600
#6600FF

Split complementary

#FF2EAB
#D1007D

Using 00ff66

00ff66 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-00ff66: #00ff66;
}

.button-primary {
  background: var(--color-00ff66);
  color: #000000;
}

$00ff66: #00ff66;

// Tailwind arbitrary value
class="bg-[#00ff66] text-white"