Dark Pink
HEX: #E75480 | Modern Palette
Color Specifications
#E75480
231, 84, 128
342°, 75% ,61%
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
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 #E75480 from deepest shade to lightest tint.
Frequently Asked Questions
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);
}