Rose Bonbon

HEX: #F9429E | Modern Palette

On White
3.33:1
FAIL
On Black
6.30:1
PASS

Color Specifications

HEX
#F9429E
RGB
249, 66, 158
HSL
329°, 93% ,61%
CMYK
0, 73, 37, 2

About Rose Bonbon

Rose Bonbon (#F9429E) is a color with RGB(249, 66, 158) and HSL(329.8°, 93.8%, 61.8%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #42F99D, which creates strong contrast. Its triadic palette includes #9EF942 and #429EF9. The name comes from Rose Bonbon (French).

  • HEX: #F9429E
  • RGB: 249, 66, 158
  • HSL: 329.8°, 93.8%, 61.8%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #42F99D
  • Triadic colors: #9EF942, #429EF9
  • The name comes from Rose Bonbon (French).

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 #F9429E from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #98989A
Protanopia #6D6D9F
Tritanopia #F55555
Achromatopsia #8D8D8D

Frequently Asked Questions

Rose Bonbon (#F9429E) is a color with RGB(249, 66, 158) and HSL(329.8°, 93.8%, 61.8%).

#F9429E pairs strongly with #42F99D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F9429E is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#F9429E is commonly associated with Energetic, Bold.

The name Rose Bonbon is linked to Rose Bonbon from French, meaning Candy Pink / Bonbon Pink.

Name, History & Etymology

Origin Word Rose Bonbon
Meaning Candy Pink / Bonbon Pink
Language French
First Recorded Use Late 20th Century

History

The term 'rose bonbon' literally translates to 'pink candy' or 'candy pink'. It evokes the vibrant, often artificial, and sweet pink hues found in various confections like hard candies, marshmallows, or bubblegum. Its rise in popularity as a color descriptor aligns with a broader trend in color naming to use more evocative and descriptive terms, often drawing from food, nature, or emotions, rather than purely technical or abstract names. The association with 'bonbon' specifically highlights a bright, playful, and often intense shade of pink, distinct from more muted or pastel 'rose' shades. It's a color that suggests youthfulness, sweetness, and sometimes a touch of kitsch or whimsy.

First Recorded Use

While the individual words 'rose' (pink) and 'bonbon' (candy) have existed for centuries, the specific compound 'rose bonbon' as a recognized color name, particularly in fashion and design contexts, gained prominence in the latter half of the 20th century, likely becoming more common from the 1970s-1980s onwards.

Cultural Associations

In French culture and beyond, 'rose bonbon' is strongly associated with childhood, femininity, and sweetness. It's a popular color for children's clothing, toys, and party decorations. In fashion, it can be used to create bold, playful, or romantic looks. It's often seen as a cheerful and optimistic color. However, depending on the context and intensity, it can also sometimes be perceived as overly saccharine or childish by some, particularly in more formal settings. Its vibrancy makes it a statement color.

Similar Named Colors

Wild Strawberry #FF43A4 ΔE 1.35
Persian Rose #FE28A2 ΔE 2.45
French Fuchsia #FD3F92 ΔE 2.80
Brilliant Rose #FF55A3 ΔE 3.33

Code Snippets

/* Background */
.element {
    background-color: #F9429E;
}

/* Text */
.element {
    color: #F9429E;
}

/* Border */
.element {
    border: 1px solid #F9429E;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #F9429E,
        #42F99D
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F9429E,
        #42F99D
    );
}

// SCSS variable
$rose-bonbon: #F9429E;

// With RGB channels (useful for rgba() usage)
$rose-bonbon-r: 249;
$rose-bonbon-g: 66;
$rose-bonbon-b: 158;

// Usage
.element {
    background-color: $rose-bonbon;
    color: rgba($rose-bonbon-r, $rose-bonbon-g, $rose-bonbon-b, 0.8);
}