Vivid Cerise

HEX: #DA1D81 | Modern Palette

On White
4.69:1
PASS
On Black
4.47:1
FAIL

Color Specifications

HEX
#DA1D81
RGB
218, 29, 129
HSL
328°, 76% ,48%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #7F7F7D
Protanopia #535382
Tritanopia #D63737
Achromatopsia #747474

Frequently Asked Questions

Vivid Cerise (#DA1D81) is a color with RGB(218, 29, 129) and HSL(328.3°, 76.5%, 48.4%).

#DA1D81 pairs strongly with #1DDA76 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DA1D81 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#DA1D81 is commonly associated with Energetic, Romantic.

The name Vivid Cerise is linked to cérise from French, meaning cherry.

Name, History & Etymology

Origin Word cérise
Meaning cherry
Language French
First Recorded Use Late 16th Century (for 'cerise' as a color name)

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.

Similar Named Colors

Barbie Pink #E0218A ΔE 2.02
Deep Cerise #DA3287 ΔE 2.19
Mexican Pink #E4007C ΔE 2.20
Red-purple #E40078 ΔE 2.89

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);
}