Blush
HEX: #DE5D83 | Modern Palette
Color Specifications
#DE5D83
222, 93, 131
342°, 66% ,61%
0, 58, 41, 13
About Blush
Blush (#DE5D83) is a color with RGB(222, 93, 131) and HSL(342.3°, 66.2%, 61.8%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #5DDEB8, which creates strong contrast. Its triadic palette includes #83DE5D and #5D83DE. The name comes from Blush (English).
- HEX: #DE5D83
- RGB: 222, 93, 131
- HSL: 342.3°, 66.2%, 61.8%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #5DDEB8
- Triadic colors: #83DE5D, #5D83DE
- The name comes from Blush (English).
Live Components
Color Palettes
Blush #DE5D83 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
Blush #DE5D83 pairs with #5DDEB8 as its complementary color, and #83DE5D and #5D83DE 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 word 'blush' comes from the Middle English 'blushen', which meant 'to shine, to glow, to look, to gaze'. It is thought to be related to the Old English 'blyscan' (to glow, to shine) and the Old Norse 'blygðast' (to blush, to be ashamed). The sense of reddening in the face due to emotion developed over time, becoming the primary meaning by the 16th century. The color 'Blush' (#de5d83) itself is a soft, pale pink, often associated with the natural flush of human skin.
First Recorded Use
c. 1300-1400
Cultural Associations
Blushing is a universal physiological response often associated with shyness, embarrassment, modesty, or even excitement. In many cultures, a blush can be seen as a sign of innocence or sincerity. In literature and art, blushing is frequently used to convey character emotions, particularly in romantic contexts. The color 'Blush' is widely used in fashion, cosmetics (e.g., blush makeup), and interior design to evoke feelings of softness, femininity, and warmth.
Code Snippets
/* Background */
.element {
background-color: #DE5D83;
}
/* Text */
.element {
color: #DE5D83;
}
/* Border */
.element {
border: 1px solid #DE5D83;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DE5D83,
#5DDEB8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DE5D83,
#5DDEB8
);
}
// SCSS variable
$blush: #DE5D83;
// With RGB channels (useful for rgba() usage)
$blush-r: 222;
$blush-g: 93;
$blush-b: 131;
// Usage
.element {
background-color: $blush;
color: rgba($blush-r, $blush-g, $blush-b, 0.8);
}