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
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 #AB4B52 from deepest shade to lightest tint.
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);
}