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
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 #872657 from deepest shade to lightest tint.
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);
}