Shimmering Blush

HEX: #D98695 | Modern Palette

On White
2.69:1
FAIL
On Black
7.79:1
PASS

Color Specifications

HEX
#D98695
RGB
217, 134, 149
HSL
349°, 38% ,85%
CMYK
0, 38.25, 31.34, 14.9

About Shimmering Blush

Shimmering Blush (#D98695) is a color with RGB(217, 134, 149) and HSL(349.16°, 38.25%, 85.1%). In design, it fits Warm styles and is suitable for Text, Background, Print. Its complementary color is #86D9CA, which creates strong contrast. Its triadic palette includes #95D986 and #8695D9.

  • HEX: #D98695
  • RGB: 217, 134, 149
  • HSL: 349.16°, 38.25%, 85.1%
  • Style: Warm
  • Use case: Text, Background, Print
  • Complementary color: #86D9CA
  • Triadic colors: #95D986, #8695D9

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

Color Characteristics

Mood
Style
Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #A4A493
Protanopia #929295
Tritanopia #D88888
Achromatopsia #9E9E9E

Frequently Asked Questions

Shimmering Blush (#D98695) is a color with RGB(217, 134, 149) and HSL(349.16°, 38.25%, 85.1%).

#D98695 pairs strongly with #86D9CA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#D98695 is suitable for Text, Background, Print and works well with Warm styles.

Name, History & Etymology

History

The phrase "Shimmering Blush" is a descriptive color name that combines two common terms. 'Shimmering' refers to a soft, wavering light or gleam, often associated with a subtle sparkle or iridescence. 'Blush' refers to a pink or reddish color, often associated with the natural flush of skin, cosmetics, or the color of certain flowers. The combination likely emerged in the modern era, particularly with the rise of detailed color naming in fashion, cosmetics, interior design, and digital media to evoke specific visual and emotional qualities. The hex code #d98695 itself is a specific digital representation of a medium-light, desaturated pink with a hint of red.

First Recorded Use

Late 20th - Early 21st Century

Cultural Associations

In Western cultures, 'blush' colors are strongly associated with femininity, romance, tenderness, and innocence. The 'shimmering' aspect adds a layer of sophistication, glamour, and ethereal quality, suggesting something delicate yet captivating. This color name would be commonly found in makeup product descriptions (e.g., eyeshadow, blush), fabric names (e.g., for evening wear), and decorative items, aiming to convey a sense of soft elegance and subtle allure.

Similar Named Colors

Ruddy Pink #E18E96 ΔE 3.23
Puce #CC8899 ΔE 3.26
Light Thulian Pink #E68FAC ΔE 5.38
Vanilla Ice #F38FA9 ΔE 5.55

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D98695,
        #CAE8E2
    );
}

// SCSS variable
$shimmering-blush: #D98695;

// With RGB channels (useful for rgba() usage)
$shimmering-blush-r: 217;
$shimmering-blush-g: 134;
$shimmering-blush-b: 149;

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