Shimmering Blush
HEX: #D98695 | Modern Palette
Color Specifications
#D98695
217, 134, 149
349°, 38% ,85%
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
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 #D98695 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A4A493
#929295
#D88888
#9E9E9E
Frequently Asked Questions
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.
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);
}