Bubble Gum
HEX: #FFC1CC | Modern Palette
Color Specifications
#FFC1CC
255, 193, 204
349°, 100% ,87%
0, 24, 20, 0
About Bubble Gum
Bubble Gum (#FFC1CC) is a color with RGB(255, 193, 204) and HSL(349.4°, 100%, 87.8%). 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 #C1FFF4, which creates strong contrast. Its triadic palette includes #CCFFC1 and #C1CCFF. The name comes from Bubble Gum (English).
- HEX: #FFC1CC
- RGB: 255, 193, 204
- HSL: 349.4°, 100%, 87.8%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #C1FFF4
- Triadic colors: #CCFFC1, #C1CCFF
- The name comes from Bubble Gum (English).
Live Components
Color Palettes
Bubble Gum #FFC1CC 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
Bubble Gum #FFC1CC pairs with #C1FFF4 as its complementary color, and #CCFFC1 and #C1CCFF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
While chewing gum has ancient origins, the concept of 'bubble gum' as a distinct product emerged in the early 20th century. Frank Henry Fleer attempted to create a bubble gum in 1906 with his 'Blibber-Blubber' brand, but it was too sticky. It wasn't until 1928 that Walter Diemer, an accountant for Fleer Chewing Gum Company, perfected a less sticky, more elastic formula. He colored it pink because it was the only food coloring available at the time, and it became the iconic color for bubble gum. This product was named 'Dubble Bubble'. The term 'bubble gum' quickly became generic for this type of chewable product.
First Recorded Use
1928 (for the specific product 'Bubble Gum')
Cultural Associations
Bubble gum is strongly associated with childhood, playfulness, and youth culture. Its pink color (#ffc1cc, or similar shades) is iconic and instantly recognizable. Blowing bubbles with gum is a common pastime and has even been the subject of contests. It's often seen as a symbol of lightheartedness and sometimes rebellion (e.g., chewing gum in class). The sound of gum popping is also a distinct cultural element.
Code Snippets
/* Background */
.element {
background-color: #FFC1CC;
}
/* Text */
.element {
color: #FFC1CC;
}
/* Border */
.element {
border: 1px solid #FFC1CC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFC1CC,
#C1FFF4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFC1CC,
#C1FFF4
);
}
// SCSS variable
$bubble-gum: #FFC1CC;
// With RGB channels (useful for rgba() usage)
$bubble-gum-r: 255;
$bubble-gum-g: 193;
$bubble-gum-b: 204;
// Usage
.element {
background-color: $bubble-gum;
color: rgba($bubble-gum-r, $bubble-gum-g, $bubble-gum-b, 0.8);
}