Magenta (Pantone)
HEX: #D0417E | Modern Palette
Color Specifications
#D0417E
208, 65, 126
334°, 68% ,81%
0, 68.75, 39.42, 18.43
About Magenta (Pantone)
Magenta (Pantone) (#D0417E) is a color with RGB(208, 65, 126) and HSL(334.41°, 68.75%, 81.57%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #41D093, which creates strong contrast. Its triadic palette includes #7ED041 and #417ED0. The name comes from Magenta (Italian).
- HEX: #D0417E
- RGB: 208, 65, 126
- HSL: 334.41°, 68.75%, 81.57%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #41D093
- Triadic colors: #7ED041, #417ED0
- The name comes from Magenta (Italian).
Live Components
Color Palettes
Magenta (Pantone) #D0417E 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 (Pantone) #D0417E pairs with #41D093 as its complementary color, and #7ED041 and #417ED0 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#81817A
#60607F
#CD4C4C
#787878
Frequently Asked Questions
Name, History & Etymology
History
The color magenta was named in 1859 after the Battle of Magenta, which took place near the town of Magenta in Italy. This was also the year that a new aniline dye, fuchsine, was patented, which produced a vibrant purplish-red color. The dye was subsequently renamed 'magenta' to capitalize on the recent victory. It quickly became a popular color in fashion and art.
First Recorded Use
1859
Cultural Associations
Magenta is a color that sits between red and blue on the color wheel, often perceived as a purplish-red or reddish-purple. It is not a spectral color, meaning it does not have its own wavelength of light but is rather an extra-spectral color perceived by the brain when the eye detects strong signals from both red and blue cones, with little or no green. In various cultures, magenta can symbolize passion, creativity, innovation, and sometimes rebellion or non-conformity. It is also a significant color in CMYK printing (Cyan, Magenta, Yellow, Key/Black) as one of the primary subtractive colors.
Code Snippets
/* Background */
.element {
background-color: #D0417E;
}
/* Text */
.element {
color: #D0417E;
}
/* Border */
.element {
border: 1px solid #D0417E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D0417E,
#B0F0D5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D0417E,
#B0F0D5
);
}
// SCSS variable
$magenta-(pantone): #D0417E;
// With RGB channels (useful for rgba() usage)
$magenta-(pantone)-r: 208;
$magenta-(pantone)-g: 65;
$magenta-(pantone)-b: 126;
// Usage
.element {
background-color: $magenta-(pantone);
color: rgba($magenta-(pantone)-r, $magenta-(pantone)-g, $magenta-(pantone)-b, 0.8);
}