Magenta (dye)
HEX: #CA1F7B | Modern Palette
Color Specifications
#CA1F7B
202, 31, 123
327°, 84% ,79%
0, 84.65, 39.11, 20.78
About Magenta (dye)
Magenta (dye) (#CA1F7B) is a color with RGB(202, 31, 123) and HSL(327.72°, 84.65%, 79.22%). It is commonly associated with Bold, Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1FCA6E, which creates strong contrast. Its triadic palette includes #7BCA1F and #1F7BCA. The name comes from Magenta (Italian).
- HEX: #CA1F7B
- RGB: 202, 31, 123
- HSL: 327.72°, 84.65%, 79.22%
- Mood: Bold, Playful
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #1FCA6E
- Triadic colors: #7BCA1F, #1F7BCA
- 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 #CA1F7B from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Magenta dye was discovered in 1859 by François-Emmanuel Verguin. It was originally named 'fuchsine' due to its color resemblance to the flowers of the fuchsia plant. However, it was quickly renamed 'magenta' to commemorate the Battle of Magenta, which took place near the Italian town of Magenta in the same year. This battle was a significant victory for the French and Sardinian forces against the Austrian Empire. The dye's vibrant, purplish-red hue quickly gained popularity in the textile industry.
First Recorded Use
1859
Cultural Associations
Magenta became a very fashionable color in the late 19th century, particularly in women's clothing and accessories. Its striking appearance made it a symbol of modernity and luxury. It is also one of the three primary colors in the CMYK color model (Cyan, Magenta, Yellow, Key/Black) used in color printing, making it fundamental to modern graphic arts and printing processes. In some contexts, magenta is associated with creativity, innovation, and passion.
Code Snippets
/* Background */
.element {
background-color: #CA1F7B;
}
/* Text */
.element {
color: #CA1F7B;
}
/* Border */
.element {
border: 1px solid #CA1F7B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CA1F7B,
#9DF7C7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CA1F7B,
#9DF7C7
);
}
// SCSS variable
$magenta-(dye): #CA1F7B;
// With RGB channels (useful for rgba() usage)
$magenta-(dye)-r: 202;
$magenta-(dye)-g: 31;
$magenta-(dye)-b: 123;
// Usage
.element {
background-color: $magenta-(dye);
color: rgba($magenta-(dye)-r, $magenta-(dye)-g, $magenta-(dye)-b, 0.8);
}