Cotton Candy

HEX: #FFBCD9 | Modern Palette

On White
1.56:1
FAIL
On Black
13.45:1
PASS

Color Specifications

HEX
#FFBCD9
RGB
255, 188, 217
HSL
334°, 100% ,86%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #D2D2D7
Protanopia #C5C5D9
Tritanopia #FCC0C0
Achromatopsia #CFCFCF

Frequently Asked Questions

Cotton Candy (#FFBCD9) is a color with RGB(255, 188, 217) and HSL(334°, 100%, 86.9%).

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

#FFBCD9 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FFBCD9 is commonly associated with Playful.

The name Cotton Candy is linked to Cotton Candy from English, meaning A spun sugar confection resembling cotton..

Name, History & Etymology

Origin Word Cotton Candy
Meaning A spun sugar confection resembling cotton.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Lavender Pink #FBAED2 ΔE 3.39
Light Hot Pink #FFB3DE ΔE 3.81
Nadeshiko Pink #F6ADC6 ΔE 3.91
Cameo Pink #EFBBCC ΔE 4.33

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