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
Alizarin Crimson #E32636 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Alizarin Crimson #E32636 pairs with #26E3D3 as its complementary color, and #36E326 and #2636E3 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}