Cerise
HEX: #DE3163 | Modern Palette
Color Specifications
#DE3163
222, 49, 99
342°, 72% ,53%
0, 78, 55, 13
About Cerise
Cerise (#DE3163) is a color with RGB(222, 49, 99) and HSL(342.7°, 72.4%, 53.1%). 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 #31DEAC, which creates strong contrast. Its triadic palette includes #63DE31 and #3163DE. The name comes from cerise (French).
- HEX: #DE3163
- RGB: 222, 49, 99
- HSL: 342.7°, 72.4%, 53.1%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #31DEAC
- Triadic colors: #63DE31, #3163DE
- The name comes from cerise (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 #DE3163 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word "cerise" entered English from Old French "cerise" (modern French "cerise"), which itself derived from Vulgar Latin *ceresia, a plural form of Latin cerasium, meaning 'cherry'. The Latin word ultimately comes from Ancient Greek kerasos (κερασός), referring to the cherry tree. The color 'cerise' as a specific shade of red-pink is named after the fruit and its characteristic color. Its use as a color name in English became more prominent in the 19th century.
First Recorded Use
c. 14th century
Cultural Associations
Cerise is often associated with vibrancy, sweetness, and a certain elegance due to its French origin. In fashion and design, it's considered a bold yet sophisticated color, often used to add a pop of color or a touch of romanticism. It can evoke feelings of passion and energy. The fruit itself, the cherry, holds various symbolic meanings across cultures, including fertility, renewal, and sweetness of life.
Code Snippets
/* Background */
.element {
background-color: #DE3163;
}
/* Text */
.element {
color: #DE3163;
}
/* Border */
.element {
border: 1px solid #DE3163;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DE3163,
#31DEAC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DE3163,
#31DEAC
);
}
// SCSS variable
$cerise: #DE3163;
// With RGB channels (useful for rgba() usage)
$cerise-r: 222;
$cerise-g: 49;
$cerise-b: 99;
// Usage
.element {
background-color: $cerise;
color: rgba($cerise-r, $cerise-g, $cerise-b, 0.8);
}