Salmon Pink
HEX: #FF91A4 | Modern Palette
Color Specifications
#FF91A4
255, 145, 164
349°, 100% ,78%
0, 43, 36, 0
About Salmon Pink
Salmon Pink (#FF91A4) is a color with RGB(255, 145, 164) and HSL(349.6°, 100%, 78.4%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #91FFEC, which creates strong contrast. Its triadic palette includes #A4FF91 and #91A4FF. The name comes from Salmon Pink (English).
- HEX: #FF91A4
- RGB: 255, 145, 164
- HSL: 349.6°, 100%, 78.4%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #91FFEC
- Triadic colors: #A4FF91, #91A4FF
- The name comes from 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 #FF91A4 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'salmon pink' emerged as a named color in English during the late 19th century. Its name directly references the distinctive reddish-orange to pinkish-orange hue of the flesh of salmon fish, which became more widely known and consumed. As color naming became more sophisticated and standardized, particularly in fashion and interior design, descriptive names like 'salmon pink' gained popularity to precisely communicate specific shades. It has seen varying degrees of popularity in fashion, home decor, and cosmetics throughout the 20th and 21st centuries.
First Recorded Use
1890
Cultural Associations
Salmon pink is often associated with femininity, softness, and warmth. It can evoke feelings of comfort and nostalgia. In fashion, it has been used for both casual and formal wear, sometimes seen as a more muted or sophisticated alternative to brighter pinks. In home decor, it can create a welcoming and cozy atmosphere. It is also sometimes associated with spring and summer seasons due to its light and fresh appearance.
Code Snippets
/* Background */
.element {
background-color: #FF91A4;
}
/* Text */
.element {
color: #FF91A4;
}
/* Border */
.element {
border: 1px solid #FF91A4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF91A4,
#91FFEC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF91A4,
#91FFEC
);
}
// SCSS variable
$salmon-pink: #FF91A4;
// With RGB channels (useful for rgba() usage)
$salmon-pink-r: 255;
$salmon-pink-g: 145;
$salmon-pink-b: 164;
// Usage
.element {
background-color: $salmon-pink;
color: rgba($salmon-pink-r, $salmon-pink-g, $salmon-pink-b, 0.8);
}