Alizarin Crimson
HEX: #E32636 | Modern Palette
Color Specifications
#E32636
227, 38, 54
354°, 77% ,52%
0, 83, 76, 11
About Alizarin Crimson
Alizarin Crimson (#E32636) is a color with RGB(227, 38, 54) and HSL(354.9°, 77.1%, 52%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #26E3D3, which creates strong contrast. Its triadic palette includes #36E326 and #2636E3. The name comes from al-ʿaṣāra (Arabic).
- HEX: #E32636
- RGB: 227, 38, 54
- HSL: 354.9°, 77.1%, 52%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #26E3D3
- Triadic colors: #36E326, #2636E3
- The name comes from al-ʿaṣāra (Arabic).
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 #E32636 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Alizarin, the core pigment, was originally derived from the madder plant (Rubia tinctorum), used for dyeing since antiquity. In 1868, German chemists Carl Graebe and Carl Liebermann synthesized alizarin, making it one of the first natural dyes to be artificially produced. This synthetic alizarin quickly replaced natural madder in textile dyeing and artists' pigments due to its consistency and lower cost. Alizarin Crimson, specifically, refers to a lake pigment made from synthetic alizarin, known for its deep, transparent red hue.
First Recorded Use
The term 'Alizarin Crimson' emerged in the late 19th century following the synthetic production of alizarin, a red dye component.
Cultural Associations
The development of synthetic alizarin revolutionized the dye industry, making vibrant, lightfast reds more accessible and affordable. It significantly impacted textile production and fine art, offering artists a stable and intense crimson previously difficult to achieve. Its widespread adoption marked a pivotal moment in the history of industrial chemistry and color manufacturing.
Code Snippets
/* Background */
.element {
background-color: #E32636;
}
/* Text */
.element {
color: #E32636;
}
/* Border */
.element {
border: 1px solid #E32636;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E32636,
#26E3D3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E32636,
#26E3D3
);
}
// SCSS variable
$alizarin-crimson: #E32636;
// With RGB channels (useful for rgba() usage)
$alizarin-crimson-r: 227;
$alizarin-crimson-g: 38;
$alizarin-crimson-b: 54;
// Usage
.element {
background-color: $alizarin-crimson;
color: rgba($alizarin-crimson-r, $alizarin-crimson-g, $alizarin-crimson-b, 0.8);
}