Han Purple
HEX: #5218FA | Modern Palette
Color Specifications
#5218FA
82, 24, 250
255°, 90% ,98%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}