Light Salmon
HEX: #FFA07A | Modern Palette
Color Specifications
#FFA07A
255, 160, 122
17°, 100% ,73%
0, 37, 52, 0
About Light Salmon
Light Salmon (#FFA07A) is a color with RGB(255, 160, 122) and HSL(17.1°, 100%, 73.9%). 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 #7AD9FF, which creates strong contrast. Its triadic palette includes #7AFFA0 and #A07AFF. The name comes from Light Salmon (English).
- HEX: #FFA07A
- RGB: 255, 160, 122
- HSL: 17.1°, 100%, 73.9%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #7AD9FF
- Triadic colors: #7AFFA0, #A07AFF
- The name comes from Light 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 #FFA07A from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'salmon' itself has been used to describe a pinkish-orange hue resembling the flesh of salmon fish for centuries. The addition of 'Light' to create 'Light Salmon' is a common practice in color naming to denote a less saturated or paler version of an existing color. This specific shade gained prominence with the advent of standardized color systems, particularly in web colors (X11 color names, later adopted by HTML/CSS). It's a variation designed to offer more granular control over color choices.
First Recorded Use
While 'salmon' as a color has existed longer, 'Light Salmon' as a distinct, named color likely emerged with the expansion of color naming conventions in fashion, art, and later, digital contexts. Its specific hex code #ffa07a was standardized much later.
Cultural Associations
Light Salmon is often associated with softness, warmth, and femininity. It can evoke feelings of comfort and gentleness. It's a popular color in spring and summer fashion, home decor, and often used in designs aiming for a delicate or romantic aesthetic. Due to its association with the fish, it can also subtly hint at nature or marine themes, though less directly than a more vibrant 'salmon' or 'coral'.
Code Snippets
/* Background */
.element {
background-color: #FFA07A;
}
/* Text */
.element {
color: #FFA07A;
}
/* Border */
.element {
border: 1px solid #FFA07A;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFA07A,
#7AD9FF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFA07A,
#7AD9FF
);
}
// SCSS variable
$light-salmon: #FFA07A;
// With RGB channels (useful for rgba() usage)
$light-salmon-r: 255;
$light-salmon-g: 160;
$light-salmon-b: 122;
// Usage
.element {
background-color: $light-salmon;
color: rgba($light-salmon-r, $light-salmon-g, $light-salmon-b, 0.8);
}