Rose Bonbon
HEX: #F9429E | Modern Palette
Color Specifications
#F9429E
249, 66, 158
329°, 93% ,61%
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
Color Palettes
Rose Bonbon #F9429E is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Rose Bonbon #F9429E pairs with #42F99D as its complementary color, and #9EF942 and #429EF9 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}