Salmon
HEX: #FF8C69 | Modern Palette
Color Specifications
#FF8C69
255, 140, 105
14°, 100% ,70%
0, 45, 59, 0
About Salmon
Salmon (#FF8C69) is a color with RGB(255, 140, 105) and HSL(14°, 100%, 70.6%). 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 #69DCFF, which creates strong contrast. Its triadic palette includes #69FF8C and #8C69FF. The name comes from salmo (Latin).
- HEX: #FF8C69
- RGB: 255, 140, 105
- HSL: 14°, 100%, 70.6%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #69DCFF
- Triadic colors: #69FF8C, #8C69FF
- The name comes from salmo (Latin).
Live Components
Color Palettes
Salmon #FF8C69 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 #FF8C69 pairs with #69DCFF as its complementary color, and #69FF8C and #8C69FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'salmon' for the fish itself has roots in Old French 'saumon' and ultimately Latin 'salmo'. The color designation emerged as a natural descriptor for the distinctive hue of the fish's flesh, which varies from pale pink to a vibrant orange-red depending on species and diet. Its adoption into the English lexicon as a color term reflects a common practice of naming colors after natural objects. The color gained popularity in fashion and interior design during the Victorian era, often associated with delicate and feminine aesthetics.
First Recorded Use
The first recorded use of 'salmon' as a color name in English was in 1776. This usage appeared in a fashion context, describing a specific shade of fabric.
Cultural Associations
Salmon as a color is often associated with warmth, vitality, and a certain natural elegance, mirroring the healthy appearance of the fish. In some cultures, the color may evoke notions of prosperity or good fortune due to the salmon's significance as a food source. Its use in fashion has seen cycles of popularity, often linked to spring and summer collections.
Code Snippets
/* Background */
.element {
background-color: #FF8C69;
}
/* Text */
.element {
color: #FF8C69;
}
/* Border */
.element {
border: 1px solid #FF8C69;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF8C69,
#69DCFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF8C69,
#69DCFF
);
}
// SCSS variable
$salmon: #FF8C69;
// With RGB channels (useful for rgba() usage)
$salmon-r: 255;
$salmon-g: 140;
$salmon-b: 105;
// Usage
.element {
background-color: $salmon;
color: rgba($salmon-r, $salmon-g, $salmon-b, 0.8);
}