Magenta (process)
HEX: #FF0090 | Modern Palette
Color Specifications
#FF0090
255, 0, 144
326°, 100% ,100%
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
Color Palettes
Magenta (process) #FF0090 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Magenta (process) #FF0090 pairs with #00FF6F as its complementary color, and #90FF00 and #0090FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}