Dark Magenta
HEX: #8B008B | Modern Palette
Color Specifications
#8B008B
139, 0, 139
300°, 100% ,54%
0, 100, 0, 45.49
About Dark Magenta
Dark Magenta (#8B008B) is a color with RGB(139, 0, 139) and HSL(300°, 100%, 54.51%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #008B00, which creates strong contrast. Its triadic palette includes #8B8B00 and Dark Cyan (#008B8B).
- HEX: #8B008B
- RGB: 139, 0, 139
- HSL: 300°, 100%, 54.51%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #008B00
- Triadic colors: #8B8B00, Dark Cyan (#008B8B)
Live Components
Color Palettes
Dark Magenta #8B008B 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 Magenta #8B008B pairs with #008B00 as its complementary color, and #8B8B00 and Dark Cyan (#008B8B) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #8B008B;
}
/* Text */
.element {
color: #8B008B;
}
/* Border */
.element {
border: 1px solid #8B008B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8B008B,
#17FF17
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8B008B,
#17FF17
);
}
// SCSS variable
$dark-magenta: #8B008B;
// With RGB channels (useful for rgba() usage)
$dark-magenta-r: 139;
$dark-magenta-g: 0;
$dark-magenta-b: 139;
// Usage
.element {
background-color: $dark-magenta;
color: rgba($dark-magenta-r, $dark-magenta-g, $dark-magenta-b, 0.8);
}