Light Pink
HEX: #FFB6C1 | Modern Palette
Color Specifications
#FFB6C1
255, 182, 193
351°, 100% ,85%
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
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 #FFB6C1 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}