Light Salmon Pink

HEX: #FF9999 | Modern Palette

On White
2.05:1
FAIL
On Black
10.27:1
PASS

Color Specifications

HEX
#FF9999
RGB
255, 153, 153
HSL
0°, 100% ,80%
CMYK
0, 40, 40, 0

About Light Salmon Pink

Light Salmon Pink (#FF9999) is a color with RGB(255, 153, 153) and HSL(0°, 100%, 80%). It is commonly associated with Playful, Romantic moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #99FFFF, which creates strong contrast. Its triadic palette includes #99FF99 and #9999FF. The name comes from Light Salmon Pink (English).

  • HEX: #FF9999
  • RGB: 255, 153, 153
  • HSL: 0°, 100%, 80%
  • Mood: Playful, Romantic
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #99FFFF
  • Triadic colors: #99FF99, #9999FF
  • The name comes from Light Salmon Pink (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #FF9999 from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #BEBE96
Protanopia #A8A89A
Tritanopia #FF9999
Achromatopsia #B5B5B5

Frequently Asked Questions

Light Salmon Pink (#FF9999) is a color with RGB(255, 153, 153) and HSL(0°, 100%, 80%).

#FF9999 pairs strongly with #99FFFF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF9999 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FF9999 is commonly associated with Playful, Romantic.

The name Light Salmon Pink is linked to Light Salmon Pink from English, meaning A light shade of pink, reminiscent of the flesh of salmon..

Name, History & Etymology

Origin Word Light Salmon Pink
Meaning A light shade of pink, reminiscent of the flesh of salmon.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The color 'salmon' as a descriptor for a pinkish-orange hue has been used for centuries, referring to the color of the fish's flesh. As color palettes expanded and became more nuanced, particularly with the advent of new dyes and pigments, more specific variations like 'salmon pink' emerged. The 'pink' suffix emphasizes the rosy aspect over the orange. 'Light Salmon Pink' further refines this to a paler, softer version. This color, like many pastel shades, saw increased popularity in fashion and interior design during various periods of the 20th century, often associated with femininity, softness, and warmth.

First Recorded Use

The term 'salmon pink' itself gained popularity in the late 19th century as color names became more standardized and descriptive. The addition of 'light' further refines this description. While an exact first use for 'Light Salmon Pink' is difficult to pinpoint, its conceptualization follows the broader trend of descriptive color naming during this period.

Cultural Associations

Light Salmon Pink is often associated with softness, romance, and femininity. It can evoke feelings of comfort and warmth. In fashion, it's a popular choice for spring and summer wear, and in interior design, it can create a calming and inviting atmosphere. It's a less intense alternative to brighter pinks, making it versatile for various applications where a gentle touch of color is desired. It's also sometimes seen in baby clothing and accessories, aligning with its soft and gentle connotations.

Similar Named Colors

Tulip #FF878D ΔE 4.08
Salmon Pink #FF91A4 ΔE 5.80
Light Coral #F08080 ΔE 6.20
Ruddy Pink #E18E96 ΔE 6.39

Code Snippets

/* Background */
.element {
    background-color: #FF9999;
}

/* Text */
.element {
    color: #FF9999;
}

/* Border */
.element {
    border: 1px solid #FF9999;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF9999,
        #99FFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF9999,
        #99FFFF
    );
}

// SCSS variable
$light-salmon-pink: #FF9999;

// With RGB channels (useful for rgba() usage)
$light-salmon-pink-r: 255;
$light-salmon-pink-g: 153;
$light-salmon-pink-b: 153;

// Usage
.element {
    background-color: $light-salmon-pink;
    color: rgba($light-salmon-pink-r, $light-salmon-pink-g, $light-salmon-pink-b, 0.8);
}