Dark Pink

HEX: #E75480 | Modern Palette

On White
3.51:1
FAIL
On Black
5.98:1
PASS

Color Specifications

HEX
#E75480
RGB
231, 84, 128
HSL
342°, 75% ,61%
CMYK
0, 64, 45, 9

About Dark Pink

Dark Pink (#E75480) is a color with RGB(231, 84, 128) and HSL(342°, 75.4%, 61.8%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #54E7BB, which creates strong contrast. Its triadic palette includes #80E754 and #5480E7.

  • HEX: #E75480
  • RGB: 231, 84, 128
  • HSL: 342°, 75.4%, 61.8%
  • Mood: Energetic, Playful
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #54E7BB
  • Triadic colors: #80E754, #5480E7

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 #E75480 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #94947C
Protanopia #717181
Tritanopia #E55B5B
Achromatopsia #898989

Frequently Asked Questions

Dark Pink (#E75480) is a color with RGB(231, 84, 128) and HSL(342°, 75.4%, 61.8%).

#E75480 pairs strongly with #54E7BB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#E75480 is commonly associated with Energetic, Playful.

Similar Named Colors

Blush #DE5D83 ΔE 1.93
Fandango Pink #DE5285 ΔE 2.99
French Rose #F64A8A ΔE 3.21
Cerise Pink #EC3B83 ΔE 4.22

Code Snippets

/* Background */
.element {
    background-color: #E75480;
}

/* Text */
.element {
    color: #E75480;
}

/* Border */
.element {
    border: 1px solid #E75480;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #E75480,
        #54E7BB
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #E75480,
        #54E7BB
    );
}

// SCSS variable
$dark-pink: #E75480;

// With RGB channels (useful for rgba() usage)
$dark-pink-r: 231;
$dark-pink-g: 84;
$dark-pink-b: 128;

// Usage
.element {
    background-color: $dark-pink;
    color: rgba($dark-pink-r, $dark-pink-g, $dark-pink-b, 0.8);
}