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