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
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 #FA8072 from deepest shade to lightest tint.
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);
}