Quinacridone Magenta

HEX: #8E3A59 | Modern Palette

On White
7.24:1
PASS
On Black
2.90:1
FAIL

Color Specifications

HEX
#8E3A59
RGB
142, 58, 89
HSL
337°, 59% ,55%
CMYK
0, 59.15, 37.32, 44.31

About Quinacridone Magenta

Quinacridone Magenta (#8E3A59) is a color with RGB(142, 58, 89) and HSL(337.86°, 59.15%, 55.69%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #3A8E6F, which creates strong contrast. Its triadic palette includes #598E3A and #3A598E. The name comes from Quinacridone Magenta (English (scientific/chemical nomenclature)).

  • HEX: #8E3A59
  • RGB: 142, 58, 89
  • HSL: 337.86°, 59.15%, 55.69%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #3A8E6F
  • Triadic colors: #598E3A, #3A598E
  • The name comes from Quinacridone Magenta (English (scientific/chemical nomenclature)).

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 #8E3A59 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #5D5D57
Protanopia #494959
Tritanopia #8C3F3F
Achromatopsia #575757

Frequently Asked Questions

Quinacridone Magenta (#8E3A59) is a color with RGB(142, 58, 89) and HSL(337.86°, 59.15%, 55.69%).

#8E3A59 pairs strongly with #3A8E6F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8E3A59 is suitable for Text, Button, Logo and works well with Warm styles.

#8E3A59 is commonly associated with Romantic.

The name Quinacridone Magenta is linked to Quinacridone Magenta from English (scientific/chemical nomenclature), meaning A synthetic organic pigment belonging to the quinacridone family, characterized by its magenta hue..

Name, History & Etymology

Origin Word Quinacridone Magenta
Meaning A synthetic organic pigment belonging to the quinacridone family, characterized by its magenta hue.
Language English (scientific/chemical nomenclature)
First Recorded Use Mid-20th Century

History

Quinacridone pigments were first synthesized by the DuPont company in 1935, but their commercial introduction as high-performance pigments didn't occur until 1958. 'Quinacridone Magenta' quickly became popular due to its exceptional lightfastness, transparency, and vibrant color, making it a superior alternative to less stable traditional magenta pigments. It is a polycyclic pigment, meaning its molecular structure consists of multiple rings, which contributes to its stability and color properties. The specific 'magenta' hue is achieved through particular substitutions and crystal forms of the quinacridone molecule.

First Recorded Use

1958 (for quinacridone pigments in general, specifically magenta hues followed shortly after)

Cultural Associations

Quinacridone Magenta is highly valued in fine art, particularly in watercolor and acrylic painting, for its brilliant, clean magenta color and excellent permanence. It is often used by artists who require a reliable, non-fading pink/purple. In design and printing, it's a key component for achieving vibrant purples and fuchsias. Its stability has made it a staple in automotive paints and other industrial coatings where color retention is crucial. It represents a significant advancement in pigment technology, offering artists and manufacturers a durable and intense magenta previously unavailable.

Similar Named Colors

Deep Ruby #843F5B ΔE 2.69
Boysenberry #873260 ΔE 4.78
Dark Raspberry #872657 ΔE 5.24
Twilight Lavender #8A496B ΔE 5.54

Code Snippets

/* Background */
.element {
    background-color: #8E3A59;
}

/* Text */
.element {
    color: #8E3A59;
}

/* Border */
.element {
    border: 1px solid #8E3A59;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8E3A59,
        #4BD1A0
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8E3A59,
        #4BD1A0
    );
}

// SCSS variable
$quinacridone-magenta: #8E3A59;

// With RGB channels (useful for rgba() usage)
$quinacridone-magenta-r: 142;
$quinacridone-magenta-g: 58;
$quinacridone-magenta-b: 89;

// Usage
.element {
    background-color: $quinacridone-magenta;
    color: rgba($quinacridone-magenta-r, $quinacridone-magenta-g, $quinacridone-magenta-b, 0.8);
}