Magenta
HEX: #FF00FF | Modern Palette
Color Specifications
#FF00FF
255, 0, 255
300°, 100% ,50%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}