Blue Violet

HEX: #8A2BE2 | Modern Palette

On White
5.96:1
PASS
On Black
3.52:1
FAIL

Color Specifications

HEX
#8A2BE2
RGB
138, 43, 226
HSL
271°, 80% ,88%
CMYK
38.94, 80.97, 0, 11.37

About Blue Violet

Blue Violet (#8A2BE2) is a color with RGB(138, 43, 226) and HSL(271.15°, 80.97%, 88.63%). It is commonly associated with Playful moods. In design, it is suitable for Text, Button, Background. Its complementary color is #83E22B, which creates strong contrast. Its triadic palette includes #E28A2B and #2BE28A. The name comes from Blue Violet (English).

  • HEX: #8A2BE2
  • RGB: 138, 43, 226
  • HSL: 271.15°, 80.97%, 88.63%
  • Mood: Playful
  • Use case: Text, Button, Background
  • Complementary color: #83E22B
  • Triadic colors: #E28A2B, #2BE28A
  • The name comes from Blue 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 #8A2BE2 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style

Accessibility Simulation

Deuteranopia #5555E1
Protanopia #3F3FE2
Tritanopia #6E6060
Achromatopsia #646464

Frequently Asked Questions

Blue Violet (#8A2BE2) is a color with RGB(138, 43, 226) and HSL(271.15°, 80.97%, 88.63%).

#8A2BE2 pairs strongly with #83E22B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8A2BE2 is suitable for Text, Button, Background.

#8A2BE2 is commonly associated with Playful.

The name Blue Violet is linked to Blue Violet from English, meaning A color that is a shade of violet with a strong blue undertone, resembling the color of certain violet flowers..

Name, History & Etymology

Origin Word Blue Violet
Meaning A color that is a shade of violet with a strong blue undertone, resembling the color of certain violet flowers.
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

History

The color violet itself has a rich history, often associated with royalty, spirituality, and luxury due to the rarity and cost of early violet dyes (like Tyrian purple, though more reddish-purple). Blue, on the other hand, has been associated with stability, tranquility, and divinity. 'Blue Violet' represents a specific point on the color spectrum, bridging these two significant colors. Its precise definition became more standardized with color systems like Munsell and later digital color models (like RGB and hexadecimal). The hexadecimal code #8a2be2 specifically defines this particular shade in digital contexts.

First Recorded Use

The individual words 'blue' and 'violet' have ancient origins. The specific compound 'blue violet' as a distinct color name likely emerged as color descriptions became more nuanced, particularly with the advent of synthetic dyes and more precise color classification systems. While difficult to pinpoint an exact first use, its common usage as a specific color descriptor would align with the late 19th or early 20th century.

Cultural Associations

In Western cultures, blue violet can evoke feelings of creativity, imagination, and a touch of mystery. It's often seen as a sophisticated and calming color. Due to its association with violet flowers, it can also carry connotations of delicacy and natural beauty. In some spiritual contexts, violet shades are linked to the crown chakra, representing enlightenment and cosmic consciousness. The blue undertone adds a sense of depth and coolness.

Similar Named Colors

Electric Violet #8F00FF ΔE 3.51
Veronica #A020F0 ΔE 3.74
Dark Violet #9400D3 ΔE 4.04
Violet (color Wheel) #7F00FF ΔE 4.24

Code Snippets

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

/* Text */
.element {
    color: #8A2BE2;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8A2BE2,
        #E1F9CB
    );
}

// SCSS variable
$blue-violet: #8A2BE2;

// With RGB channels (useful for rgba() usage)
$blue-violet-r: 138;
$blue-violet-g: 43;
$blue-violet-b: 226;

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