Magenta

HEX: #FF00FF | Modern Palette

On White
3.14:1
FAIL
On Black
6.70:1
PASS

Color Specifications

HEX
#FF00FF
RGB
255, 0, 255
HSL
300°, 100% ,50%
CMYK
0, 100, 0, 0

About Magenta

Magenta (#FF00FF) is a color with RGB(255, 0, 255) and HSL(300°, 100%, 50%). 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 Green (#00FF00), which creates strong contrast. Its triadic palette includes Yellow (#FFFF00) and Cyan (#00FFFF). The name comes from Magenta (Italian).

  • HEX: #FF00FF
  • RGB: 255, 0, 255
  • HSL: 300°, 100%, 50%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: Green (#00FF00)
  • Triadic colors: Yellow (#FFFF00), Cyan (#00FFFF)
  • The name comes from Magenta (Italian).

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9393FD
Protanopia #5D5DFF
Tritanopia #EF6464
Achromatopsia #919191

Frequently Asked Questions

Magenta (#FF00FF) is a color with RGB(255, 0, 255) and HSL(300°, 100%, 50%).

#FF00FF pairs strongly with Green (#00FF00) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF00FF is commonly associated with Energetic, Bold.

The name Magenta is linked to Magenta from Italian, meaning Named after the Battle of Magenta.

Name, History & Etymology

Origin Word Magenta
Meaning Named after the Battle of Magenta
Language Italian
First Recorded Use Mid-19th Century

History

The color magenta was first introduced in 1859, named to commemorate the Battle of Magenta, which took place near the town of Magenta in Italy. This battle was a significant victory for the French and Sardinian armies over the Austrian Empire. The dye that produced this vibrant purplish-red color was one of the first aniline dyes, discovered shortly before the battle. Initially, it was also known as 'fuchsine' or 'roseine'. The name 'magenta' quickly became popular for the color itself.

First Recorded Use

1859

Cultural Associations

Magenta is a primary color in the CMYK (cyan, magenta, yellow, black) subtractive color model, used in printing. It is often associated with creativity, innovation, and individuality. In some spiritual contexts, magenta is linked to universal love, compassion, and emotional balance. It is a popular color in fashion and design for its bold and vibrant nature.

Similar Named Colors

Psychedelic Purple #DF00FF ΔE 5.88
Hot Magenta #FF1DCE ΔE 6.87
Purple Pizzazz #FE4EDA ΔE 7.10
Razzle Dazzle Rose #FF33CC ΔE 7.57

Code Snippets

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

/* Text */
.element {
    color: #FF00FF;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FF00FF,
        #00FF00
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF00FF,
        #00FF00
    );
}

// SCSS variable
$magenta: #FF00FF;

// With RGB channels (useful for rgba() usage)
$magenta-r: 255;
$magenta-g: 0;
$magenta-b: 255;

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