Magenta (process)

HEX: #FF0090 | Modern Palette

On White
3.71:1
FAIL
On Black
5.65:1
PASS

Color Specifications

HEX
#FF0090
RGB
255, 0, 144
HSL
326°, 100% ,100%
CMYK
0, 100, 43.53, 0

About Magenta (process)

Magenta (process) (#FF0090) is a color with RGB(255, 0, 144) and HSL(326.12°, 100%, 100%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #00FF6F, which creates strong contrast. Its triadic palette includes #90FF00 and #0090FF. The name comes from Magenta (Italian).

  • HEX: #FF0090
  • RGB: 255, 0, 144
  • HSL: 326.12°, 100%, 100%
  • Mood: Playful
  • Style: Neon, Warm
  • Use case: Text, Button, Background
  • Complementary color: #00FF6F
  • Triadic colors: #90FF00, #0090FF
  • 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 #FF0090 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Warm

Accessibility Simulation

Deuteranopia #93938B
Protanopia #5D5D91
Tritanopia #FB3535
Achromatopsia #858585

Frequently Asked Questions

Magenta (process) (#FF0090) is a color with RGB(255, 0, 144) and HSL(326.12°, 100%, 100%).

#FF0090 pairs strongly with #00FF6F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF0090 is suitable for Text, Button, Background and works well with Neon, Warm styles.

#FF0090 is commonly associated with Playful.

The name Magenta (process) is linked to Magenta from Italian, meaning A town in Italy.

Name, History & Etymology

Origin Word Magenta
Meaning A town in Italy
Language Italian
First Recorded Use 19th Century

History

The color magenta was named after the Battle of Magenta, which took place near the town of Magenta in Italy in 1859. The battle was a victory for the French and Sardinian forces over the Austrian Empire. The color was originally called 'fuchsine' after the fuchsia flower, but was renamed magenta to commemorate the battle. It became popular as an aniline dye. In the context of 'process magenta' (also known as printer's magenta), it is one of the three primary colors in the CMYK color model, used in color printing, along with cyan and yellow.

First Recorded Use

1859

Cultural Associations

Magenta is a vibrant and often striking color. In Western cultures, it can be associated with creativity, innovation, and individuality. It's also seen in fashion and design for its bold appeal. In some spiritual contexts, it can represent universal love or spiritual balance. As a process color, its cultural significance is primarily tied to its role in reproducing a full spectrum of colors in printed media, making it ubiquitous in books, magazines, and packaging.

Similar Named Colors

Deep Pink #FF1493 ΔE 0.71
Persian Rose #FE28A2 ΔE 3.43
Rose #FF007F ΔE 3.55
French Fuchsia #FD3F92 ΔE 3.86

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF0090,
        #FFFFFF
    );
}

// SCSS variable
$magenta-(process): #FF0090;

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

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