Vivid Cerise
HEX: #DA1D81 | Modern Palette
Color Specifications
#DA1D81
218, 29, 129
328°, 76% ,48%
0, 87, 41, 15
About Vivid Cerise
Vivid Cerise (#DA1D81) is a color with RGB(218, 29, 129) and HSL(328.3°, 76.5%, 48.4%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1DDA76, which creates strong contrast. Its triadic palette includes #81DA1D and #1D81DA. The name comes from cérise (French).
- HEX: #DA1D81
- RGB: 218, 29, 129
- HSL: 328.3°, 76.5%, 48.4%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #1DDA76
- Triadic colors: #81DA1D, #1D81DA
- The name comes from cérise (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 #DA1D81 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color name 'cerise' comes directly from the French word for 'cherry'. Cherries have been cultivated for millennia, and their distinctive red color has long been recognized. As a color term, 'cerise' specifically refers to a deep, bright red, often with a hint of pink or purple, reminiscent of ripe cherries. The addition of 'vivid' serves to intensify this, distinguishing it from a more muted or darker cerise. The use of 'vivid' as a color descriptor became more common in the 19th and 20th centuries as a way to precisely describe the intensity of a hue.
First Recorded Use
The word 'cerise' as a color name (referring to a cherry-red) entered English from French in the late 16th century. The descriptor 'vivid' is a much later addition to emphasize intensity.
Cultural Associations
Cerise, as a vibrant red, is often associated with passion, energy, and femininity. It's a popular color in fashion, cosmetics (especially lipstick and blush), and interior design. Its brightness makes it eye-catching and often used for accents. In some contexts, it can evoke a sense of playfulness or romance. The 'vivid' aspect further amplifies these associations, making it a bold and assertive choice.
Code Snippets
/* Background */
.element {
background-color: #DA1D81;
}
/* Text */
.element {
color: #DA1D81;
}
/* Border */
.element {
border: 1px solid #DA1D81;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DA1D81,
#1DDA76
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DA1D81,
#1DDA76
);
}
// SCSS variable
$vivid-cerise: #DA1D81;
// With RGB channels (useful for rgba() usage)
$vivid-cerise-r: 218;
$vivid-cerise-g: 29;
$vivid-cerise-b: 129;
// Usage
.element {
background-color: $vivid-cerise;
color: rgba($vivid-cerise-r, $vivid-cerise-g, $vivid-cerise-b, 0.8);
}