Blue-magenta Violet

HEX: #553592 | Modern Palette

On White
9.09:1
PASS
On Black
2.31:1
FAIL

Color Specifications

HEX
#553592
RGB
85, 53, 146
HSL
260°, 63% ,57%
CMYK
41.78, 63.7, 0, 42.75

About Blue-magenta Violet

Blue-magenta Violet (#553592) is a color with RGB(85, 53, 146) and HSL(260.65°, 63.7%, 57.25%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #729235, which creates strong contrast. Its triadic palette includes #925535 and #359255. The name comes from Blue-magenta Violet (English).

  • HEX: #553592
  • RGB: 85, 53, 146
  • HSL: 260.65°, 63.7%, 57.25%
  • Mood: Romantic
  • Use case: Text, Button, Accent
  • Complementary color: #729235
  • Triadic colors: #925535, #359255
  • The name comes from Blue-magenta Violet (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 #553592 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #404092
Protanopia #3A3A92
Tritanopia #444949
Achromatopsia #484848

Frequently Asked Questions

Blue-magenta Violet (#553592) is a color with RGB(85, 53, 146) and HSL(260.65°, 63.7%, 57.25%).

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

#553592 is suitable for Text, Button, Accent.

#553592 is commonly associated with Romantic.

The name Blue-magenta Violet is linked to Blue-magenta Violet from English, meaning A descriptive color name indicating a shade of violet that leans significantly towards both blue and magenta..

Name, History & Etymology

Origin Word Blue-magenta Violet
Meaning A descriptive color name indicating a shade of violet that leans significantly towards both blue and magenta.
Language English
First Recorded Use 20th Century

History

The term 'violet' itself has ancient roots, derived from the flower. 'Blue-magenta Violet' is a modern compound descriptor. As color science and digital color representation (like hexadecimal codes) advanced, more precise and descriptive names were needed to differentiate subtle variations. This particular name combines primary and secondary color descriptors to accurately place the hue within the color spectrum, indicating a violet that is not a pure spectral violet but rather a mix with strong blue and magenta undertones. The hexadecimal code #553592 confirms this, showing a higher blue component than red, and a significant magenta (red+blue) influence.

First Recorded Use

Likely early to mid-20th century, as color naming became more standardized and nuanced, especially in art, fashion, and printing industries. Specific first use for this exact compound name is difficult to pinpoint without extensive historical linguistic and color science research.

Cultural Associations

Violet, in general, is often associated with royalty, spirituality, mystery, and creativity. The 'blue-magenta' modifier adds a layer of sophistication and depth. In fashion and design, such specific color names help convey a precise aesthetic. It might be seen in luxury goods, artistic expressions, or digital interfaces where nuanced color palettes are crucial. It evokes a sense of richness and complexity, moving beyond simple primary or secondary colors.

Similar Named Colors

Rebecca Purple #663399 ΔE 3.44
Regalia #522D80 ΔE 3.56
Purple Heart #69359C ΔE 3.97
Spanish Violet #4C2882 ΔE 3.98

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #553592,
        #A8D74D
    );
}

// SCSS variable
$blue-magenta-violet: #553592;

// With RGB channels (useful for rgba() usage)
$blue-magenta-violet-r: 85;
$blue-magenta-violet-g: 53;
$blue-magenta-violet-b: 146;

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