Dark Salmon
HEX: #E9967A | Modern Palette
Color Specifications
#E9967A
233, 150, 122
15°, 71% ,69%
0, 36, 48, 9
About Dark Salmon
Dark Salmon (#E9967A) is a color with RGB(233, 150, 122) and HSL(15.1°, 71.6%, 69.6%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #7ACDE9, which creates strong contrast. Its triadic palette includes #7AE996 and #967AE9. The name comes from Dark Salmon (English).
- HEX: #E9967A
- RGB: 233, 150, 122
- HSL: 15.1°, 71.6%, 69.6%
- Mood: Energetic, Playful
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #7ACDE9
- Triadic colors: #7AE996, #967AE9
- The name comes from Dark Salmon (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 #E9967A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'salmon' itself is named after the fish, whose flesh typically ranges from orange-pink to red-orange. This natural association has been used for centuries. As color palettes became more nuanced and descriptive, modifiers like 'dark' were added to distinguish variations. 'Dark Salmon' specifically gained prominence with the advent of digital color systems, such as the X11 color names, where it was assigned the hexadecimal value #E9967A. This standardization made it a precisely definable and reproducible color.
First Recorded Use
While 'salmon' as a color has existed longer, 'Dark Salmon' as a distinct, named shade likely emerged with the standardization of color names in art, fashion, and later, digital contexts. Its inclusion in X11 color names (early 1990s) solidified its specific identity.
Cultural Associations
The color salmon, and by extension 'Dark Salmon', often evokes feelings of warmth, nature, and sometimes femininity due to its association with pinks. It's a popular color in fashion, home decor, and cosmetics. Its 'dark' modifier suggests a richer, perhaps more sophisticated or autumnal version of the classic salmon hue.
Code Snippets
/* Background */
.element {
background-color: #E9967A;
}
/* Text */
.element {
color: #E9967A;
}
/* Border */
.element {
border: 1px solid #E9967A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E9967A,
#7ACDE9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E9967A,
#7ACDE9
);
}
// SCSS variable
$dark-salmon: #E9967A;
// With RGB channels (useful for rgba() usage)
$dark-salmon-r: 233;
$dark-salmon-g: 150;
$dark-salmon-b: 122;
// Usage
.element {
background-color: $dark-salmon;
color: rgba($dark-salmon-r, $dark-salmon-g, $dark-salmon-b, 0.8);
}