CSS Named Color
Copy-ready color values
HEX
#F0FFF0RGB
rgb(240, 255, 240)HSL
hsl(120, 100%, 97%)HSV
hsv(120, 6%, 100%)CMYK approx.
cmyk(6, 0, 6, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F0FFF0 | |
| RGB | rgb(240, 255, 240) | |
| HSL | hsl(120, 100%, 97%) | |
| HSV | hsv(120, 6%, 100%) | |
| CMYK approx. | cmyk(6, 0, 6, 0) | |
| CSS keyword | honeydew |
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#493D49Analogous
#F2FFF0#F0FDF2Triadic
#FFF0F0#F0F0FFSplit complementary
#3A2E3A#0C000CUsing 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"