Dark Raspberry
HEX: #872657 | Modern Palette
Color Specifications
#872657
135, 38, 87
329°, 71% ,52%
0, 71.85, 35.56, 47.06
About Dark Raspberry
Dark Raspberry (#872657) is a color with RGB(135, 38, 87) and HSL(329.69°, 71.85%, 52.94%). 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 #268756, which creates strong contrast. Its triadic palette includes #578726 and #265787.
- HEX: #872657
- RGB: 135, 38, 87
- HSL: 329.69°, 71.85%, 52.94%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #268756
- Triadic colors: #578726, #265787
Live Components
Color Palettes
Dark Raspberry #872657 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Raspberry #872657 pairs with #268756 as its complementary color, and #578726 and #265787 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #872657;
}
/* Text */
.element {
color: #872657;
}
/* Border */
.element {
border: 1px solid #872657;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#872657,
#31DD86
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#872657,
#31DD86
);
}
// SCSS variable
$dark-raspberry: #872657;
// With RGB channels (useful for rgba() usage)
$dark-raspberry-r: 135;
$dark-raspberry-g: 38;
$dark-raspberry-b: 87;
// Usage
.element {
background-color: $dark-raspberry;
color: rgba($dark-raspberry-r, $dark-raspberry-g, $dark-raspberry-b, 0.8);
}