Salmon
HEX: #FA8072 | Modern Palette
Color Specifications
#FA8072
250, 128, 114
6°, 54% ,98%
0, 48.8, 54.4, 1.96
About Salmon
Salmon (#FA8072) is a color with RGB(250, 128, 114) and HSL(6.18°, 54.4%, 98.04%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #72ECFA, which creates strong contrast. Its triadic palette includes #72FA80 and #8072FA. The name comes from salmo (Latin).
- HEX: #FA8072
- RGB: 250, 128, 114
- HSL: 6.18°, 54.4%, 98.04%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #72ECFA
- Triadic colors: #72FA80, #8072FA
- The name comes from salmo (Latin).
Live Components
Color Palettes
Salmon #FA8072 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Salmon #FA8072 pairs with #72ECFA as its complementary color, and #72FA80 and #8072FA in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#AFAF6D
#949473
#FB7E7E
#A4A4A4
Frequently Asked Questions
Name, History & Etymology
History
The word 'salmon' entered English from Anglo-Norman 'samoun', which itself came from Latin 'salmo'. The Latin word's ultimate origin is debated, but it's thought to be related to 'salire' (to leap), referring to the fish's jumping behavior. The color 'salmon' as a descriptor for a reddish-orange hue similar to the flesh of the fish became common much later than the word for the fish itself.
First Recorded Use
13th Century
Cultural Associations
Salmon is a highly prized fish globally, both for its culinary value and its significance in various cultures. It plays a crucial role in the ecosystems of the Northern Hemisphere and has been a staple food for indigenous peoples for millennia. Its migratory journeys are often seen as symbols of perseverance and return. The color 'salmon' is often associated with warmth, nature, and sometimes femininity.
Code Snippets
/* Background */
.element {
background-color: #FA8072;
}
/* Text */
.element {
color: #FA8072;
}
/* Border */
.element {
border: 1px solid #FA8072;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FA8072,
#F7FCFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FA8072,
#F7FCFD
);
}
// SCSS variable
$salmon: #FA8072;
// With RGB channels (useful for rgba() usage)
$salmon-r: 250;
$salmon-g: 128;
$salmon-b: 114;
// Usage
.element {
background-color: $salmon;
color: rgba($salmon-r, $salmon-g, $salmon-b, 0.8);
}