Light Pink

HEX: #FFB6C1 | Modern Palette

On White
1.65:1
FAIL
On Black
12.71:1
PASS

Color Specifications

HEX
#FFB6C1
RGB
255, 182, 193
HSL
351°, 100% ,85%
CMYK
0, 29, 24, 0

About Light Pink

Light Pink (#FFB6C1) is a color with RGB(255, 182, 193) and HSL(351°, 100%, 85.7%). 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 #B6FFF4, which creates strong contrast. Its triadic palette includes #C1FFB6 and #B6C1FF. The name comes from Light Pink (English).

  • HEX: #FFB6C1
  • RGB: 255, 182, 193
  • HSL: 351°, 100%, 85.7%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #B6FFF4
  • Triadic colors: #C1FFB6, #B6C1FF
  • The name comes from Light Pink (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 #FFB6C1 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #CFCFBF
Protanopia #C0C0C1
Tritanopia #FEB7B7
Achromatopsia #C9C9C9

Frequently Asked Questions

Light Pink (#FFB6C1) is a color with RGB(255, 182, 193) and HSL(351°, 100%, 85.7%).

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

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

#FFB6C1 is commonly associated with Playful.

The name Light Pink is linked to Light Pink from English, meaning A pale shade of pink, lighter than standard pink..

Name, History & Etymology

Origin Word Light Pink
Meaning A pale shade of pink, lighter than standard pink.
Language English
First Recorded Use Late 17th to Early 18th Century (as 'pink')

History

The color pink itself has a long history, often associated with youth, femininity, and romance. Historically, pink dyes were derived from natural sources like madder root. The distinction of 'light pink' became more common as color vocabulary expanded and as more precise shades could be consistently reproduced. In the 20th century, especially post-WWII, pink became strongly associated with girls and feminine products in Western cultures. 'Light pink' specifically often evokes softness, innocence, and tenderness.

First Recorded Use

The term 'pink' for the color is recorded from the late 17th century. The modifier 'light' would have been used descriptively as needed. The specific hex code #ffb6c1 is a modern digital representation.

Cultural Associations

In Western cultures, light pink is widely associated with baby girls, ballet, romance, sweetness, and spring. It is often used in fashion, interior design, and branding to convey a gentle, delicate, or charming aesthetic. While globally recognized, its specific cultural connotations can vary; for example, in some cultures, pink may not carry the same strong gendered associations as in the West.

Similar Named Colors

Cherry Blossom Pink #FFB7C5 ΔE 1.11
Pink #FFC0CB ΔE 2.67
Bubble Gum #FFC1CC ΔE 2.94
Orchid Pink #F2BDCD ΔE 4.85

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FFB6C1,
        #B6FFF4
    );
}

// SCSS variable
$light-pink: #FFB6C1;

// With RGB channels (useful for rgba() usage)
$light-pink-r: 255;
$light-pink-g: 182;
$light-pink-b: 193;

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