Honeydew
HEX: #F0FFF0 | Modern Palette
Color Specifications
#F0FFF0
240, 255, 240
120°, 100% ,97%
6, 0, 6, 0
About Honeydew
Honeydew (#F0FFF0) is a color with RGB(240, 255, 240) and HSL(120°, 100%, 97.1%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #FFF0FF, which creates strong contrast. Its triadic palette includes #F0F0FF and #FFF0F0. The name comes from Honeydew (English).
- HEX: #F0FFF0
- RGB: 240, 255, 240
- HSL: 120°, 100%, 97.1%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #FFF0FF
- Triadic colors: #F0F0FF, #FFF0F0
- The name comes from Honeydew (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #F0FFF0 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'honeydew' itself is a compound of 'honey' (Old English 'hunig') and 'dew' (Old English 'dēaw'). Historically, 'honeydew' referred to a sweet, sticky substance found on plants, often secreted by aphids or other insects, or sometimes believed to fall from the sky like dew. This substance was sometimes collected and eaten. The application of 'honeydew' to a specific type of melon is much more recent. The 'Honeydew' melon variety, known for its pale green flesh and sweet taste, is believed to have originated in France and Algeria, and was introduced to the United States around the turn of the 20th century. Its name likely reflects its sweetness. The color #f0fff0 'Honeydew' is a very pale, light green, reminiscent of the interior flesh of the melon.
First Recorded Use
The term 'honeydew' for the melon variety specifically became common in the late 19th and early 20th centuries, though the concept of 'honey-dew' as a sweet secretion dates back much further.
Cultural Associations
The Honeydew melon is a popular fruit, often found in fruit salads and as a refreshing snack. Its name evokes a sense of natural sweetness and freshness. In color palettes, 'Honeydew' is often used to represent softness, nature, and a subtle, calming presence. It's a common web color name.
Code Snippets
/* Background */
.element {
background-color: #F0FFF0;
}
/* Text */
.element {
color: #F0FFF0;
}
/* Border */
.element {
border: 1px solid #F0FFF0;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F0FFF0,
#FFF0FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F0FFF0,
#FFF0FF
);
}
// SCSS variable
$honeydew: #F0FFF0;
// With RGB channels (useful for rgba() usage)
$honeydew-r: 240;
$honeydew-g: 255;
$honeydew-b: 240;
// Usage
.element {
background-color: $honeydew;
color: rgba($honeydew-r, $honeydew-g, $honeydew-b, 0.8);
}