Light Salmon Pink
HEX: #FF9999 | Modern Palette
Color Specifications
#FF9999
255, 153, 153
0°, 100% ,80%
0, 40, 40, 0
About Light Salmon Pink
Light Salmon Pink (#FF9999) is a color with RGB(255, 153, 153) and HSL(0°, 100%, 80%). It is commonly associated with Playful, Romantic moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #99FFFF, which creates strong contrast. Its triadic palette includes #99FF99 and #9999FF. The name comes from Light Salmon Pink (English).
- HEX: #FF9999
- RGB: 255, 153, 153
- HSL: 0°, 100%, 80%
- Mood: Playful, Romantic
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #99FFFF
- Triadic colors: #99FF99, #9999FF
- The name comes from Light Salmon 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 #FF9999 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'salmon' as a descriptor for a pinkish-orange hue has been used for centuries, referring to the color of the fish's flesh. As color palettes expanded and became more nuanced, particularly with the advent of new dyes and pigments, more specific variations like 'salmon pink' emerged. The 'pink' suffix emphasizes the rosy aspect over the orange. 'Light Salmon Pink' further refines this to a paler, softer version. This color, like many pastel shades, saw increased popularity in fashion and interior design during various periods of the 20th century, often associated with femininity, softness, and warmth.
First Recorded Use
The term 'salmon pink' itself gained popularity in the late 19th century as color names became more standardized and descriptive. The addition of 'light' further refines this description. While an exact first use for 'Light Salmon Pink' is difficult to pinpoint, its conceptualization follows the broader trend of descriptive color naming during this period.
Cultural Associations
Light Salmon Pink is often associated with softness, romance, and femininity. It can evoke feelings of comfort and warmth. In fashion, it's a popular choice for spring and summer wear, and in interior design, it can create a calming and inviting atmosphere. It's a less intense alternative to brighter pinks, making it versatile for various applications where a gentle touch of color is desired. It's also sometimes seen in baby clothing and accessories, aligning with its soft and gentle connotations.
Code Snippets
/* Background */
.element {
background-color: #FF9999;
}
/* Text */
.element {
color: #FF9999;
}
/* Border */
.element {
border: 1px solid #FF9999;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF9999,
#99FFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF9999,
#99FFFF
);
}
// SCSS variable
$light-salmon-pink: #FF9999;
// With RGB channels (useful for rgba() usage)
$light-salmon-pink-r: 255;
$light-salmon-pink-g: 153;
$light-salmon-pink-b: 153;
// Usage
.element {
background-color: $light-salmon-pink;
color: rgba($light-salmon-pink-r, $light-salmon-pink-g, $light-salmon-pink-b, 0.8);
}