Dark Magenta

HEX: #8B008B | Modern Palette

On White
8.50:1
PASS
On Black
2.47:1
FAIL

Color Specifications

HEX
#8B008B
RGB
139, 0, 139
HSL
300°, 100% ,54%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #4D4D8A
Protanopia #2F2F8B
Tritanopia #823333
Achromatopsia #4D4D4D

Frequently Asked Questions

Dark Magenta (#8B008B) is a color with RGB(139, 0, 139) and HSL(300°, 100%, 54.51%).

#8B008B pairs strongly with #008B00 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8B008B is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#8B008B is commonly associated with Energetic, Bold.

Similar Named Colors

Mardi Gras #880085 ΔE 1.05
Purple #800080 ΔE 2.43
Violet (RYB) #8601AF ΔE 6.41
Eminence #6C3082 ΔE 7.08

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);
}