Heliotrope Magenta

HEX: #AA00BB | Modern Palette

On White
6.13:1
PASS
On Black
3.43:1
FAIL

Color Specifications

HEX
#AA00BB
RGB
170, 0, 187
HSL
294°, 100% ,73%
CMYK
9.09, 100, 0, 26.67

About Heliotrope Magenta

Heliotrope Magenta (#AA00BB) is a color with RGB(170, 0, 187) and HSL(294.55°, 100%, 73.33%). It is commonly associated with Bold, Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Accent. Its complementary color is #11BB00, which creates strong contrast. Its triadic palette includes #BBAA00 and #00BBAA. The name comes from Heliotrope (from Greek 'helios' sun + 'tropos' turning) and Magenta (from Italian 'Magenta', a town in Italy) (English (from Greek)).

  • HEX: #AA00BB
  • RGB: 170, 0, 187
  • HSL: 294.55°, 100%, 73.33%
  • Mood: Bold, Playful
  • Style: Neon
  • Use case: Text, Button, Accent
  • Complementary color: #11BB00
  • Triadic colors: #BBAA00, #00BBAA
  • The name comes from Heliotrope (from Greek 'helios' sun + 'tropos' turning) and Magenta (from Italian 'Magenta', a town in Italy) (English (from Greek)).

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

Color Characteristics

Mood
Bold Playful
Style
Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #6060BA
Protanopia #3B3BBB
Tritanopia #9D4747
Achromatopsia #626262

Frequently Asked Questions

Heliotrope Magenta (#AA00BB) is a color with RGB(170, 0, 187) and HSL(294.55°, 100%, 73.33%).

#AA00BB pairs strongly with #11BB00 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#AA00BB is commonly associated with Bold, Playful.

The name Heliotrope Magenta is linked to Heliotrope (from Greek 'helios' sun + 'tropos' turning) and Magenta (from Italian 'Magenta', a town in Italy) from English (from Greek), meaning Heliotrope refers to plants that turn towards the sun, and the color associated with the flower. Magenta is a purplish-red color named after the Battle of Magenta in 1859..

Name, History & Etymology

Origin Word Heliotrope (from Greek 'helios' sun + 'tropos' turning) and Magenta (from Italian 'Magenta', a town in Italy)
Meaning Heliotrope refers to plants that turn towards the sun, and the color associated with the flower. Magenta is a purplish-red color named after the Battle of Magenta in 1859.
Language English (from Greek)
First Recorded Use Mid-19th Century

History

The color magenta was discovered by French chemist François-Emmanuel Verguin in 1859, originally called 'fuchsine'. It was renamed 'magenta' to celebrate the French victory at the Battle of Magenta. Heliotrope, as a color, has been used to describe a range of purplish-pink to reddish-purple shades, often associated with the fragrant heliotrope flower. 'Heliotrope Magenta' specifically combines these two concepts, suggesting a vibrant, deep purplish-red that evokes both the flower and the intensity of the magenta dye.

First Recorded Use

The color 'magenta' was first produced and named in 1859. 'Heliotrope' as a color name for a purplish hue also gained popularity around the same period, referring to the color of heliotrope flowers.

Cultural Associations

Magenta is often associated with creativity, innovation, and passion. It's a color that stands out and can be seen as unconventional. Heliotrope, due to its floral origin, can evoke feelings of nature, fragrance, and delicate beauty, even when referring to a strong color. The combination 'Heliotrope Magenta' suggests a sophisticated and vibrant shade, perhaps used in fashion, cosmetics, or artistic contexts to convey a sense of unique elegance and boldness.

Similar Named Colors

Purple (Munsell) #9F00C5 ΔE 2.84
Dark Orchid #9932CC ΔE 5.19
Dark Violet #9400D3 ΔE 5.76
Vivid Mulberry #B80CE3 ΔE 6.38

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #AA00BB,
        #83FF77
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #AA00BB,
        #83FF77
    );
}

// SCSS variable
$heliotrope-magenta: #AA00BB;

// With RGB channels (useful for rgba() usage)
$heliotrope-magenta-r: 170;
$heliotrope-magenta-g: 0;
$heliotrope-magenta-b: 187;

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