Wild Watermelon

HEX: #FC6C85 | Modern Palette

On White
2.75:1
FAIL
On Black
7.62:1
PASS

Color Specifications

HEX
#FC6C85
RGB
252, 108, 133
HSL
349°, 96% ,70%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Bold Playful
Style
Neon Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A8A880
Protanopia #868686
Tritanopia #FB7070
Achromatopsia #9C9C9C

Frequently Asked Questions

Wild Watermelon (#FC6C85) is a color with RGB(252, 108, 133) and HSL(349.6°, 96%, 70.6%).

#FC6C85 pairs strongly with #6CFCE3 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FC6C85 is suitable for Text, Button, Accent and works well with Neon, Warm styles.

#FC6C85 is commonly associated with Bold, Playful.

The name Wild Watermelon is linked to Wild Watermelon from English, meaning A descriptive term for a color that evokes the vibrant pinkish-red hue of a ripe watermelon, particularly one found in a natural or untamed setting, suggesting a slightly less uniform or more organic shade than a cultivated one..

Name, History & Etymology

Origin Word Wild Watermelon
Meaning A descriptive term for a color that evokes the vibrant pinkish-red hue of a ripe watermelon, particularly one found in a natural or untamed setting, suggesting a slightly less uniform or more organic shade than a cultivated one.
Language English
First Recorded Use Late 20th Century - Early 21st Century

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.

Similar Named Colors

Brink Pink #FB607F ΔE 2.25
Light Crimson #F56991 ΔE 4.52
Candy Pink #E4717A ΔE 4.82
Light Carmine Pink #E66771 ΔE 5.48

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);
}