English Red
HEX: #AB4B52 | Modern Palette
Color Specifications
#AB4B52
171, 75, 82
355°, 56% ,67%
0, 56.14, 52.05, 32.94
About English Red
English Red (#AB4B52) is a color with RGB(171, 75, 82) and HSL(355.63°, 56.14%, 67.06%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #4BABA4, which creates strong contrast. Its triadic palette includes #52AB4B and #4B52AB. The name comes from English Red (English).
- HEX: #AB4B52
- RGB: 171, 75, 82
- HSL: 355.63°, 56.14%, 67.06%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #4BABA4
- Triadic colors: #52AB4B, #4B52AB
- The name comes from English Red (English).
Live Components
Color Palettes
English Red #AB4B52 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
English Red #AB4B52 pairs with #4BABA4 as its complementary color, and #52AB4B and #4B52AB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
English Red, as a color, has a long history tied to natural earth pigments, particularly red ochre and Venetian Red (which was also widely used in England). These pigments, rich in iron oxide, were readily available and produced durable, stable reds. The 'English' designation likely came to differentiate a specific hue or preparation popular in England from other reds. It was extensively used in house painting, particularly for brickwork and timber, and in the arts. It also found its way into military uniforms (e.g., 'redcoats') and heraldry. Over time, the term has come to evoke a sense of traditional English style and heritage.
First Recorded Use
The term 'English Red' likely emerged as a descriptor for a particular pigment or color popular in England, possibly derived from iron oxides, during the 18th century. While precise first use is hard to pinpoint, the widespread use of such pigments in art, architecture, and textiles of the period suggests its establishment.
Cultural Associations
Often associated with traditional English country houses and cottages. Evokes a sense of warmth, tradition, and rustic charm. Can be seen in historical military uniforms, particularly those of the British Army. Used in various decorative arts and crafts reflecting English heritage. Sometimes confused with 'British Racing Green' as a national color, though 'English Red' is more about a specific shade than a national identifier.
Code Snippets
/* Background */
.element {
background-color: #AB4B52;
}
/* Text */
.element {
color: #AB4B52;
}
/* Border */
.element {
border: 1px solid #AB4B52;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#AB4B52,
#7CDAD3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#AB4B52,
#7CDAD3
);
}
// SCSS variable
$english-red: #AB4B52;
// With RGB channels (useful for rgba() usage)
$english-red-r: 171;
$english-red-g: 75;
$english-red-b: 82;
// Usage
.element {
background-color: $english-red;
color: rgba($english-red-r, $english-red-g, $english-red-b, 0.8);
}