Han Purple

HEX: #5218FA | Modern Palette

On White
7.32:1
PASS
On Black
2.87:1
FAIL

Color Specifications

HEX
#5218FA
RGB
82, 24, 250
HSL
255°, 90% ,98%
CMYK
67.2, 90.4, 0, 1.96

About Han Purple

Han Purple (#5218FA) is a color with RGB(82, 24, 250) and HSL(255.4°, 90.4%, 98.04%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #C0FA18, which creates strong contrast. Its triadic palette includes #FA5218 and #18FA52. The name comes from Han Purple (English).

  • HEX: #5218FA
  • RGB: 82, 24, 250
  • HSL: 255.4°, 90.4%, 98.04%
  • Mood: Playful
  • Style: Neon, Cool
  • Use case: Text, Button, Background
  • Complementary color: #C0FA18
  • Triadic colors: #FA5218, #18FA52
  • The name comes from Han Purple (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 #5218FA from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon Cool

Accessibility Simulation

Deuteranopia #3131FA
Protanopia #2424FA
Tritanopia #006464
Achromatopsia #565656

Frequently Asked Questions

Han Purple (#5218FA) is a color with RGB(82, 24, 250) and HSL(255.4°, 90.4%, 98.04%).

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

#5218FA is suitable for Text, Button, Background and works well with Neon, Cool styles.

#5218FA is commonly associated with Playful.

The name Han Purple is linked to Han Purple from English, meaning A synthetic barium copper silicate pigment developed in ancient China during the Western Zhou period..

Name, History & Etymology

Origin Word Han Purple
Meaning A synthetic barium copper silicate pigment developed in ancient China during the Western Zhou period.
Language English
First Recorded Use Western Zhou Dynasty

History

Han Purple is a synthetic pigment created in ancient China, first appearing during the Western Zhou period. It is chemically a barium copper silicate (BaCuSi2O6). Its production involved sophisticated high-temperature solid-state reactions, similar to the process for making glass and bronze. It was used extensively in murals, pottery, and particularly for painting the Terracotta Army figures during the Qin Dynasty. Its use declined after the Han Dynasty, possibly due to the collapse of the centralized empire and the loss of the specialized knowledge required for its manufacture, or perhaps due to the rise of indigo dyes which were easier to produce.

First Recorded Use

c. 1200-771 BCE

Cultural Associations

Han Purple holds significant cultural importance as one of the earliest known synthetic pigments. Its vibrant purple hue was highly valued and associated with royalty, divinity, and the cosmos in ancient Chinese culture. It was often used in conjunction with Han Blue (BaCuSi4O10), another synthetic pigment, to create intricate polychromatic designs. The pigment's unique properties, including its ability to fluoresce under infrared light and its one-dimensional antiferromagnetic behavior, have made it a subject of intense scientific study, revealing the advanced chemical knowledge of ancient Chinese artisans.

Similar Named Colors

Electric Ultramarine #3F00FF ΔE 2.11
Electric Indigo #6F00FF ΔE 3.12
Bluebonnet #1C1CF0 ΔE 4.09
Blue #0000FF ΔE 4.25

Code Snippets

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

/* Text */
.element {
    color: #5218FA;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #5218FA,
        #FCFFF5
    );
}

// SCSS variable
$han-purple: #5218FA;

// With RGB channels (useful for rgba() usage)
$han-purple-r: 82;
$han-purple-g: 24;
$han-purple-b: 250;

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