CSS Named Color

Copy-ready color values

HEX#F0FFF0
RGBrgb(240, 255, 240)
HSLhsl(120, 100%, 97%)
HSVhsv(120, 6%, 100%)
CMYK approx.cmyk(6, 0, 6, 0)

Color value table

FormatValueCopy
HEX#F0FFF0
RGBrgb(240, 255, 240)
HSLhsl(120, 100%, 97%)
HSVhsv(120, 6%, 100%)
CMYK approx.cmyk(6, 0, 6, 0)
CSS keywordhoneydew

Contrast and classification

LightLightness1.04:1Contrast with white20.27:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#F2FFF2

White 30%
#F5FFF5

White 70%
#FBFFFB

White 90%
#FEFFFE

Black 10%
#D8E6D8

Black 30%
#A8B3A8

Black 70%
#484D48

Black 90%
#181A18

Harmony palettes

Complementary

#0F000F
#493D49

Analogous

#F2FFF0
#F0FDF2

Triadic

#FFF0F0
#F0F0FF

Split complementary

#3A2E3A
#0C000C

Using Honeydew

Honeydew 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-honeydew: #f0fff0;
}

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

$honeydew: #f0fff0;

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