Wild Watermelon
HEX: #FC6C85 | Modern Palette
Color Specifications
#FC6C85
252, 108, 133
349°, 96% ,70%
0, 57, 47, 1
About Wild Watermelon
Wild Watermelon (#FC6C85) is a color with RGB(252, 108, 133) and HSL(349.6°, 96%, 70.6%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #6CFCE3, which creates strong contrast. Its triadic palette includes #85FC6C and #6C85FC. The name comes from Wild Watermelon (English).
- HEX: #FC6C85
- RGB: 252, 108, 133
- HSL: 349.6°, 96%, 70.6%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #6CFCE3
- Triadic colors: #85FC6C, #6C85FC
- The name comes from Wild Watermelon (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 #FC6C85 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The use of fruits and natural objects to describe colors is ancient. 'Watermelon' as a color descriptor gained popularity in the 20th century, especially in fashion and cosmetics, to denote a specific range of pink-reds. The addition of 'wild' is a more recent development, possibly to differentiate it from standard 'watermelon' colors, implying a slightly more rustic, intense, or perhaps less artificial shade. It aligns with a broader trend of using evocative, nature-inspired adjectives to create unique color identities.
First Recorded Use
The specific color name 'Wild Watermelon' is likely a modern coinage, emerging with the proliferation of named colors in digital design, fashion, and paint industries. While 'watermelon' as a color descriptor has existed longer, the 'wild' qualifier adds a nuance that points to a more recent trend in descriptive color naming.
Cultural Associations
The color 'Wild Watermelon' (hex #fc6c85) evokes feelings of summer, freshness, and natural sweetness. In Western cultures, watermelon is strongly associated with picnics, warm weather, and refreshing treats. The 'wild' aspect might subtly suggest a more organic, less processed, or even slightly rebellious feel compared to a standard 'watermelon' color. It could be used in branding for natural products, children's items, or fashion lines aiming for a playful yet sophisticated vibe. It's a cheerful and energetic color.
Code Snippets
/* Background */
.element {
background-color: #FC6C85;
}
/* Text */
.element {
color: #FC6C85;
}
/* Border */
.element {
border: 1px solid #FC6C85;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FC6C85,
#6CFCE3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FC6C85,
#6CFCE3
);
}
// SCSS variable
$wild-watermelon: #FC6C85;
// With RGB channels (useful for rgba() usage)
$wild-watermelon-r: 252;
$wild-watermelon-g: 108;
$wild-watermelon-b: 133;
// Usage
.element {
background-color: $wild-watermelon;
color: rgba($wild-watermelon-r, $wild-watermelon-g, $wild-watermelon-b, 0.8);
}