Magenta Haze

HEX: #9F4576 | Modern Palette

On White
5.85:1
PASS
On Black
3.59:1
FAIL

Color Specifications

HEX
#9F4576
RGB
159, 69, 118
HSL
327°, 56% ,62%
CMYK
0, 56.6, 25.79, 37.65

About Magenta Haze

Magenta Haze (#9F4576) is a color with RGB(159, 69, 118) and HSL(327.33°, 56.6%, 62.35%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #459F6E, which creates strong contrast. Its triadic palette includes #769F45 and #45769F. The name comes from Magenta Haze (English).

  • HEX: #9F4576
  • RGB: 159, 69, 118
  • HSL: 327.33°, 56.6%, 62.35%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #459F6E
  • Triadic colors: #769F45, #45769F
  • The name comes from Magenta Haze (English).

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #6A6A74
Protanopia #555576
Tritanopia #9C4D4D
Achromatopsia #656565

Frequently Asked Questions

Magenta Haze (#9F4576) is a color with RGB(159, 69, 118) and HSL(327.33°, 56.6%, 62.35%).

#9F4576 pairs strongly with #459F6E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9F4576 is suitable for Text, Button, Logo and works well with Warm styles.

#9F4576 is commonly associated with Romantic.

The name Magenta Haze is linked to Magenta Haze from English, meaning A specific shade of magenta, often implying a soft, diffused, or atmospheric quality..

Name, History & Etymology

Origin Word Magenta Haze
Meaning A specific shade of magenta, often implying a soft, diffused, or atmospheric quality.
Language English
First Recorded Use Late 20th - Early 21st Century

History

Magenta itself was named after the Battle of Magenta in 1859, the same year the aniline dye fuchsine (which produced the color) was discovered. The term 'haze' refers to an atmospheric phenomenon where dust, smoke, and other dry particulates obscure the clarity of the sky. When combined, 'Magenta Haze' evokes a specific visual: a soft, somewhat indistinct, purplish-red glow. It's more descriptive than a primary color name and often used to convey a mood or specific visual effect rather than a standard color chip. Its usage has likely increased with digital art, gaming, and fashion where nuanced color descriptions are common.

First Recorded Use

The exact first use of 'Magenta Haze' as a specific color name or descriptor is difficult to pinpoint precisely. 'Magenta' as a color name dates back to 1859. 'Haze' implies a diffused or atmospheric quality. The combination likely emerged as descriptive language in art, design, or literature, particularly with the advent of digital color naming and expanded color palettes.

Cultural Associations

The term 'haze' often carries connotations of dreaminess, mystery, or a slightly obscured reality. When paired with 'magenta,' a color often associated with creativity, passion, and the unconventional, 'Magenta Haze' can evoke a sense of ethereal beauty, twilight, or a vibrant but soft glow. It might be used in contexts describing sunsets, futuristic aesthetics, or fantasy landscapes. In fashion or interior design, it could suggest a sophisticated, muted vibrancy.

Similar Named Colors

Twilight Lavender #8A496B ΔE 4.78
Medium Ruby #AA4069 ΔE 4.86
Medium Red Violet #BB3385 ΔE 5.90
Fandango #B53389 ΔE 5.94

Code Snippets

/* Background */
.element {
    background-color: #9F4576;
}

/* Text */
.element {
    color: #9F4576;
}

/* Border */
.element {
    border: 1px solid #9F4576;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9F4576,
        #69D59A
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9F4576,
        #69D59A
    );
}

// SCSS variable
$magenta-haze: #9F4576;

// With RGB channels (useful for rgba() usage)
$magenta-haze-r: 159;
$magenta-haze-g: 69;
$magenta-haze-b: 118;

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