Cotton Candy
HEX: #FFBCD9 | Modern Palette
Color Specifications
#FFBCD9
255, 188, 217
334°, 100% ,86%
0, 26, 15, 0
About Cotton Candy
Cotton Candy (#FFBCD9) is a color with RGB(255, 188, 217) and HSL(334°, 100%, 86.9%). 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 #BCFFE2, which creates strong contrast. Its triadic palette includes #D9FFBC and #BCD9FF. The name comes from Cotton Candy (English).
- HEX: #FFBCD9
- RGB: 255, 188, 217
- HSL: 334°, 100%, 86.9%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #BCFFE2
- Triadic colors: #D9FFBC, #BCD9FF
- The name comes from Cotton Candy (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 #FFBCD9 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The creation of spun sugar is often attributed to William Morrison and John C. Wharton, candymakers from Nashville, Tennessee, who introduced their 'Fairy Floss' at the 1904 St. Louis World's Fair. They patented an electric machine to produce it. The term 'cotton candy' became more common in the United States by the 1920s and 1930s. It is known by various names globally, such as 'Fairy Floss' in Australia and the UK, and 'Candy Floss' in other parts of the world.
First Recorded Use
1904 (as 'Fairy Floss')
Cultural Associations
Cotton candy is strongly associated with fairs, carnivals, circuses, and amusement parks, symbolizing childhood fun and indulgence. Its light, airy texture and vibrant colors (often pink or blue) make it visually appealing. It's a popular treat for children and adults alike, often evoking nostalgia. The process of making it, where sugar is melted and spun into fine threads, is often a spectacle in itself.
Code Snippets
/* Background */
.element {
background-color: #FFBCD9;
}
/* Text */
.element {
color: #FFBCD9;
}
/* Border */
.element {
border: 1px solid #FFBCD9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFBCD9,
#BCFFE2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFBCD9,
#BCFFE2
);
}
// SCSS variable
$cotton-candy: #FFBCD9;
// With RGB channels (useful for rgba() usage)
$cotton-candy-r: 255;
$cotton-candy-g: 188;
$cotton-candy-b: 217;
// Usage
.element {
background-color: $cotton-candy;
color: rgba($cotton-candy-r, $cotton-candy-g, $cotton-candy-b, 0.8);
}