Ruddy Pink
HEX: #E18E96 | Modern Palette
Color Specifications
#E18E96
225, 142, 150
354°, 58% ,72%
0, 37, 33, 12
About Ruddy Pink
Ruddy Pink (#E18E96) is a color with RGB(225, 142, 150) and HSL(354.2°, 58%, 72%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #8EE1D9, which creates strong contrast. Its triadic palette includes #96E18E and #8E96E1. The name comes from Ruddy Pink (English).
- HEX: #E18E96
- RGB: 225, 142, 150
- HSL: 354.2°, 58%, 72%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #8EE1D9
- Triadic colors: #96E18E, #8E96E1
- The name comes from Ruddy Pink (English).
Live Components
Color Palettes
Ruddy Pink #E18E96 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
Ruddy Pink #E18E96 pairs with #8EE1D9 as its complementary color, and #96E18E and #8E96E1 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 term 'ruddy' has a long history, primarily referring to a healthy, reddish complexion. When combined with 'pink,' it evokes a warm, vibrant, and often natural shade of pink. Its use became more prevalent as color naming became more nuanced, moving beyond basic color terms to more descriptive compounds. In the context of cosmetics, 'ruddy pink' would suggest a natural blush or lip color. In fashion, it might describe a fabric with a warm, slightly muted pink hue. The hex code #e18e96 specifically defines a particular shade within this descriptive range.
First Recorded Use
While 'ruddy' and 'pink' have much older origins, the specific compound 'ruddy pink' as a distinct color name likely gained traction in the late 19th or early 20th century, particularly in fashion, cosmetics, and art descriptions. 'Ruddy' itself dates back to Old English 'rudig' meaning red or reddish, and 'pink' as a color name emerged in the 17th century.
Cultural Associations
Culturally, 'ruddy' often carries connotations of health, vitality, and outdoor living, especially when describing skin tone. 'Pink' is widely associated with femininity, sweetness, and romance. 'Ruddy Pink' therefore combines these, suggesting a vibrant, natural, and perhaps youthful or healthy femininity. It's a color that can be seen as cheerful and inviting. It's less 'bubblegum' pink and more 'rose petal' or 'flushed cheek' pink.
Code Snippets
/* Background */
.element {
background-color: #E18E96;
}
/* Text */
.element {
color: #E18E96;
}
/* Border */
.element {
border: 1px solid #E18E96;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E18E96,
#8EE1D9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E18E96,
#8EE1D9
);
}
// SCSS variable
$ruddy-pink: #E18E96;
// With RGB channels (useful for rgba() usage)
$ruddy-pink-r: 225;
$ruddy-pink-g: 142;
$ruddy-pink-b: 150;
// Usage
.element {
background-color: $ruddy-pink;
color: rgba($ruddy-pink-r, $ruddy-pink-g, $ruddy-pink-b, 0.8);
}