Han Blue
HEX: #446CCF | Modern Palette
Color Specifications
#446CCF
68, 108, 207
222°, 67% ,81%
67.15, 47.83, 0, 18.82
About Han Blue
Han Blue (#446CCF) is a color with RGB(68, 108, 207) and HSL(222.73°, 67.15%, 81.18%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #CFA744, which creates strong contrast. Its triadic palette includes #CF446C and #6CCF44. The name comes from Han Blue (English).
- HEX: #446CCF
- RGB: 68, 108, 207
- HSL: 222.73°, 67.15%, 81.18%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #CFA744
- Triadic colors: #CF446C, #6CCF44
- The name comes from Han Blue (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 #446CCF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#6262CF
#6969CF
#007E7E
#717171
Frequently Asked Questions
Name, History & Etymology
History
Han Blue is an artificial pigment that was synthesized in China. Its chemical composition is barium copper silicate (BaCuSi4O10). It is closely related to Han Purple (barium copper silicate, BaCuSi2O6), with the main difference being the ratio of copper to silicon. Both pigments were developed during the Han Dynasty, though evidence suggests their use might predate this period. Han Blue was used extensively in murals, pottery, and other artifacts, particularly for decorative purposes. Its production involved heating a mixture of quartz, barium mineral (like witherite or barite), a copper compound, and a lead salt (as a flux) to temperatures between 900-1000 °C. The exact method of its discovery is unknown, but it is believed to have been a byproduct or intentional development from glassmaking or bronze metallurgy processes. Production of Han Blue largely ceased around the end of the Han Dynasty, possibly due to political instability, changes in artistic preferences, or the difficulty and cost of its manufacture.
First Recorded Use
c. 206 BCE - 9 CE
Cultural Associations
Han Blue, along with Han Purple, represents a significant technological achievement in ancient China, demonstrating advanced understanding of chemistry and materials science. Its vibrant blue color was highly valued and used to depict skies, water, and decorative patterns on various objects, including the famous Terracotta Army figures (though much of the original paint has faded). The pigments were also used in wall paintings and on ceramic glazes. The knowledge of its synthesis was lost for centuries until modern scientific analysis rediscovered its composition.
Code Snippets
/* Background */
.element {
background-color: #446CCF;
}
/* Text */
.element {
color: #446CCF;
}
/* Border */
.element {
border: 1px solid #446CCF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#446CCF,
#EFDDAF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#446CCF,
#EFDDAF
);
}
// SCSS variable
$han-blue: #446CCF;
// With RGB channels (useful for rgba() usage)
$han-blue-r: 68;
$han-blue-g: 108;
$han-blue-b: 207;
// Usage
.element {
background-color: $han-blue;
color: rgba($han-blue-r, $han-blue-g, $han-blue-b, 0.8);
}