Deep Cerise
HEX: #DA3287 | Modern Palette
Color Specifications
#DA3287
218, 50, 135
329°, 69% ,52%
0, 77, 38, 15
About Deep Cerise
Deep Cerise (#DA3287) is a color with RGB(218, 50, 135) and HSL(329.6°, 69.4%, 52.5%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #32DA85, which creates strong contrast. Its triadic palette includes #87DA32 and #3287DA. The name comes from Cerise (English (via French)).
- HEX: #DA3287
- RGB: 218, 50, 135
- HSL: 329.6°, 69.4%, 52.5%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #32DA85
- Triadic colors: #87DA32, #3287DA
- The name comes from Cerise (English (via French)).
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 #DA3287 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'cerise' itself comes from Old French 'cerise', which in turn derives from Vulgar Latin '*ceresium*', a corruption of Classical Latin 'cerasum' (cherry). The color 'cerise' was adopted into English to describe a vivid, reddish-pink color reminiscent of ripe cherries. The addition of 'Deep' serves to differentiate it from lighter or more standard cerise shades, indicating a darker, more saturated, and often slightly purplish-red hue. Color names often evolve with modifiers like 'deep', 'light', 'pale', 'bright' to specify variations within a broader color category.
First Recorded Use
The term 'cerise' as a color name became popular in English around the 1850s-1860s, directly from the French word for cherry. 'Deep Cerise' is a later, more specific descriptor.
Cultural Associations
Cerise, and by extension Deep Cerise, is often associated with femininity, romance, and vibrancy. It has been a popular color in fashion, cosmetics, and interior design, particularly during periods that favored rich, jewel-toned hues. Its association with cherries also gives it a connotation of sweetness and natural beauty. In some contexts, it can be seen as a more sophisticated or intense alternative to standard pink.
Code Snippets
/* Background */
.element {
background-color: #DA3287;
}
/* Text */
.element {
color: #DA3287;
}
/* Border */
.element {
border: 1px solid #DA3287;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DA3287,
#32DA85
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DA3287,
#32DA85
);
}
// SCSS variable
$deep-cerise: #DA3287;
// With RGB channels (useful for rgba() usage)
$deep-cerise-r: 218;
$deep-cerise-g: 50;
$deep-cerise-b: 135;
// Usage
.element {
background-color: $deep-cerise;
color: rgba($deep-cerise-r, $deep-cerise-g, $deep-cerise-b, 0.8);
}