Red Devil
HEX: #860111 | Modern Palette
Color Specifications
#860111
134, 1, 17
352°, 99% ,52%
0, 99.25, 87.31, 47.45
About Red Devil
Red Devil (#860111) is a color with RGB(134, 1, 17) and HSL(352.78°, 99.25%, 52.55%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #018676, which creates strong contrast. Its triadic palette includes #118601 and #011186. The name comes from Red Devil (English).
- HEX: #860111
- RGB: 134, 1, 17
- HSL: 352.78°, 99.25%, 52.55%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #018676
- Triadic colors: #118601, #011186
- The name comes from Red Devil (English).
Live Components
Color Palettes
Red Devil #860111 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
Red Devil #860111 pairs with #018676 as its complementary color, and #118601 and #011186 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The imagery of the Devil as red with horns and a tail has roots in medieval Christian art and folklore, drawing from descriptions in the Bible (e.g., Revelation 12:3 describing a 'great red dragon') and pagan deities. The specific phrase 'Red Devil' became a popular epithet, especially as a nickname for sports teams (e.g., Manchester United since the 1930s) and various products. It also refers to a type of firework known for its red flash and loud bang.
First Recorded Use
The exact first use is difficult to pinpoint, but the phrase gained significant traction in the late 19th and early 20th centuries, particularly in popular culture and sports.
Cultural Associations
The 'Red Devil' is a powerful cultural symbol, embodying evil, temptation, and sometimes rebellious spirit. In sports, it signifies a formidable and aggressive team. In general parlance, it can describe someone with a fiery temper or a mischievous nature. The color red itself is often associated with danger, passion, and power, reinforcing the Devil's image.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #860111;
}
/* Text */
.element {
color: #860111;
}
/* Border */
.element {
border: 1px solid #860111;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#860111,
#0EFEE1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#860111,
#0EFEE1
);
}
// SCSS variable
$red-devil: #860111;
// With RGB channels (useful for rgba() usage)
$red-devil-r: 134;
$red-devil-g: 1;
$red-devil-b: 17;
// Usage
.element {
background-color: $red-devil;
color: rgba($red-devil-r, $red-devil-g, $red-devil-b, 0.8);
}