Hot Magenta

HEX: #FF1DCE | Modern Palette

On White
3.32:1
FAIL
On Black
6.32:1
PASS

Color Specifications

HEX
#FF1DCE
RGB
255, 29, 206
HSL
313°, 100% ,55%
CMYK
0, 89, 19, 0

About Hot Magenta

Hot Magenta (#FF1DCE) is a color with RGB(255, 29, 206) and HSL(313°, 100%, 55.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #1DFF4E, which creates strong contrast. Its triadic palette includes #CEFF1D and #1DCEFF. The name comes from Hot Magenta (English).

  • HEX: #FF1DCE
  • RGB: 255, 29, 206
  • HSL: 313°, 100%, 55.7%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #1DFF4E
  • Triadic colors: #CEFF1D, #1DCEFF
  • The name comes from Hot Magenta (English).

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 #FF1DCE from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9595CB
Protanopia #6161CF
Tritanopia #F65454
Achromatopsia #8D8D8D

Frequently Asked Questions

Hot Magenta (#FF1DCE) is a color with RGB(255, 29, 206) and HSL(313°, 100%, 55.7%).

#FF1DCE pairs strongly with #1DFF4E as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FF1DCE is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#FF1DCE is commonly associated with Energetic, Bold.

The name Hot Magenta is linked to Hot Magenta from English, meaning A vivid, intense shade of magenta, often associated with high energy or fashion..

Name, History & Etymology

Origin Word Hot Magenta
Meaning A vivid, intense shade of magenta, often associated with high energy or fashion.
Language English
First Recorded Use Late 20th Century

History

Magenta as a color was first produced in 1859, named after the Battle of Magenta in Italy. It's an extra-spectral color, meaning it's not in the rainbow but is perceived by the brain when red and blue cones are stimulated. The 'hot' prefix became popular in the latter half of the 20th century to describe particularly vibrant or intense shades of colors, reflecting trends in fashion, pop culture, and design that favored bold and energetic palettes. 'Hot Magenta' specifically evokes a more electric and less traditional feel than a standard magenta.

First Recorded Use

The specific color name 'Hot Magenta' likely gained prominence with the advent of digital color systems and web colors, as well as in fashion and design contexts, particularly from the 1980s onwards. While magenta itself has a longer history, the 'hot' descriptor emphasizes its intensity and modern appeal.

Cultural Associations

Hot Magenta is often associated with vibrancy, excitement, femininity (though not exclusively), and a sense of modern flair. It has been popular in fashion, cosmetics, and graphic design, particularly in contexts aiming for a bold or playful aesthetic. It can also be seen in digital interfaces and branding for its eye-catching quality.

Similar Named Colors

Razzle Dazzle Rose #FF33CC ΔE 1.56
Shocking Pink #FC0FC0 ΔE 2.25
Purple Pizzazz #FE4EDA ΔE 4.46
Light Deep Pink #FF5CCD ΔE 6.43

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF1DCE,
        #1DFF4E
    );
}

// SCSS variable
$hot-magenta: #FF1DCE;

// With RGB channels (useful for rgba() usage)
$hot-magenta-r: 255;
$hot-magenta-g: 29;
$hot-magenta-b: 206;

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