Mordant Red 19
HEX: #AE0C00 | Modern Palette
Color Specifications
#AE0C00
174, 12, 0
4°, 100% ,34%
0, 93, 100, 32
About Mordant Red 19
Mordant Red 19 (#AE0C00) is a color with RGB(174, 12, 0) and HSL(4.1°, 100%, 34.1%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00A2AE, which creates strong contrast. Its triadic palette includes #00AE0C and #0C00AE. The name comes from Mordant Red 19 (English).
- HEX: #AE0C00
- RGB: 174, 12, 0
- HSL: 4.1°, 100%, 34.1%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00A2AE
- Triadic colors: #00AE0C, #0C00AE
- The name comes from Mordant Red 19 (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 #AE0C00 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Mordant dyes, as a general class, have a long history, with natural mordant dyes (like madder) being used for millennia. Synthetic mordant dyes, including those that would eventually be classified as 'Mordant Red 19' (also known as Chrome Red A or Eriochrome Red A), emerged with the rise of synthetic organic chemistry in the late 19th and early 20th centuries. These dyes were developed to offer brighter, more consistent, and often more lightfast colors than their natural predecessors. Mordant Red 19 specifically is an azo dye that forms a stable complex with metal ions (typically chromium) to achieve its color and fastness properties on fibers like wool and nylon. Its use was prevalent in textile dyeing before the widespread adoption of other dye classes for certain applications.
First Recorded Use
Circa 1900-1920s (as a class of mordant dyes, specific 'Red 19' identification would follow standardization)
Cultural Associations
While not as culturally iconic as some natural dyes, synthetic mordant dyes like Mordant Red 19 played a significant role in the industrial revolution of textiles, enabling mass production of uniformly colored fabrics. They contributed to the democratization of color in clothing and other goods, making vibrant hues accessible to a broader population. Its specific shade of red, a deep, somewhat muted red, would have been common in industrial textiles, uniforms, and home furnishings during its peak usage.
Code Snippets
/* Background */
.element {
background-color: #AE0C00;
}
/* Text */
.element {
color: #AE0C00;
}
/* Border */
.element {
border: 1px solid #AE0C00;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#AE0C00,
#00A2AE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#AE0C00,
#00A2AE
);
}
// SCSS variable
$mordant-red-19: #AE0C00;
// With RGB channels (useful for rgba() usage)
$mordant-red-19-r: 174;
$mordant-red-19-g: 12;
$mordant-red-19-b: 0;
// Usage
.element {
background-color: $mordant-red-19;
color: rgba($mordant-red-19-r, $mordant-red-19-g, $mordant-red-19-b, 0.8);
}