Vermilion
HEX: #D9381E | Modern Palette
Color Specifications
#D9381E
217, 56, 30
8°, 86% ,85%
0, 74.19, 86.18, 14.9
About Vermilion
Vermilion (#D9381E) is a color with RGB(217, 56, 30) and HSL(8.34°, 86.18%, 85.1%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #1EBFD9, which creates strong contrast. Its triadic palette includes #1ED938 and #381ED9. The name comes from vermiculus (Latin).
- HEX: #D9381E
- RGB: 217, 56, 30
- HSL: 8.34°, 86.18%, 85.1%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #1EBFD9
- Triadic colors: #1ED938, #381ED9
- The name comes from vermiculus (Latin).
Live Components
Color Palettes
Vermilion #D9381E 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
Vermilion #D9381E pairs with #1EBFD9 as its complementary color, and #1ED938 and #381ED9 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Vermilion is a brilliant red pigment, originally derived from cinnabar, a mercury sulfide mineral. Its use dates back to ancient civilizations, including the Romans and Chinese, where it was highly prized for its intensity and permanence. The synthetic production of vermilion began in the 8th century in China and later in Europe, making it more widely available. It was a staple pigment for artists throughout the Renaissance and Baroque periods.
First Recorded Use
The term 'vermiculus' was used in Latin to describe the insect and the dye it produced. The English 'vermilion' emerged in the late Middle Ages.
Cultural Associations
In China, vermilion has deep cultural significance, symbolizing life, good fortune, and royalty, often used in traditional lacquerware, calligraphy, and imperial seals. It was also a prominent color in medieval European illuminated manuscripts and religious art, representing the blood of Christ or the passion of saints. Its striking hue made it a powerful visual element in various artistic and decorative traditions globally.
Code Snippets
/* Background */
.element {
background-color: #D9381E;
}
/* Text */
.element {
color: #D9381E;
}
/* Border */
.element {
border: 1px solid #D9381E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D9381E,
#B8F1FA
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D9381E,
#B8F1FA
);
}
// SCSS variable
$vermilion: #D9381E;
// With RGB channels (useful for rgba() usage)
$vermilion-r: 217;
$vermilion-g: 56;
$vermilion-b: 30;
// Usage
.element {
background-color: $vermilion;
color: rgba($vermilion-r, $vermilion-g, $vermilion-b, 0.8);
}