Melon
HEX: #FDBCB4 | Modern Palette
Color Specifications
#FDBCB4
253, 188, 180
6°, 94% ,84%
0, 26, 29, 1
About Melon
Melon (#FDBCB4) is a color with RGB(253, 188, 180) and HSL(6.6°, 94.8%, 84.9%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #B4F5FD, which creates strong contrast. Its triadic palette includes #B4FDBC and #BCB4FD. The name comes from melon (French).
- HEX: #FDBCB4
- RGB: 253, 188, 180
- HSL: 6.6°, 94.8%, 84.9%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #B4F5FD
- Triadic colors: #B4FDBC, #BCB4FD
- The name comes from melon (French).
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 #FDBCB4 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The English word 'melon' comes from the Old French 'melon', which itself is derived from the Latin 'melo' or 'melonem' (accusative of 'melo'). This Latin term referred specifically to a type of gourd or melon. The ultimate root is believed to be Greek 'mēlopepōn' (μηλοπέπων), a compound of 'mēlon' (μῆλον, 'apple') and 'pepōn' (πέπων, 'ripe' or 'gourd'). This reflects the fruit's apple-like shape and its classification as a type of gourd. The word has been consistently used in English since its adoption to refer to various types of large, sweet, fleshy fruits of the gourd family.
First Recorded Use
14th century
Cultural Associations
Melons have been cultivated for thousands of years, with evidence of their presence in ancient Egypt and Persia. They hold significant cultural importance in many parts of the world, often associated with summer, refreshment, and hospitality. In some cultures, specific types of melons are used in traditional dishes, desserts, or beverages. The color #fdbcb4, often associated with 'Melon', evokes a soft, pale orange or pinkish-orange hue, reminiscent of the flesh of certain melon varieties like cantaloupe or honeydew, particularly when ripe and juicy. This color is often perceived as warm, inviting, and sweet.
Code Snippets
/* Background */
.element {
background-color: #FDBCB4;
}
/* Text */
.element {
color: #FDBCB4;
}
/* Border */
.element {
border: 1px solid #FDBCB4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FDBCB4,
#B4F5FD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FDBCB4,
#B4F5FD
);
}
// SCSS variable
$melon: #FDBCB4;
// With RGB channels (useful for rgba() usage)
$melon-r: 253;
$melon-g: 188;
$melon-b: 180;
// Usage
.element {
background-color: $melon;
color: rgba($melon-r, $melon-g, $melon-b, 0.8);
}