Venetian Red
HEX: #C80815 | Modern Palette
Color Specifications
#C80815
200, 8, 21
355°, 92% ,40%
0, 96, 90, 22
About Venetian Red
Venetian Red (#C80815) is a color with RGB(200, 8, 21) and HSL(355.9°, 92.3%, 40.8%). 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 #08C8BB, which creates strong contrast. Its triadic palette includes #15C808 and #0815C8. The name comes from Venetian Red (English (color name)).
- HEX: #C80815
- RGB: 200, 8, 21
- HSL: 355.9°, 92.3%, 40.8%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #08C8BB
- Triadic colors: #15C808, #0815C8
- The name comes from Venetian Red (English (color name)).
Live Components
Color Palettes
Venetian Red #C80815 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
Venetian Red #C80815 pairs with #08C8BB as its complementary color, and #15C808 and #0815C8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Venetian Red is an iron oxide pigment, specifically a natural red earth pigment (ochre) that was historically mined and processed in or near Venice, Italy. Its distinctive warm, earthy red hue made it very popular with Renaissance painters, particularly the Venetian School (e.g., Titian, Tintoretto, Veronese). It was valued for its permanence, opacity, and versatility. Over time, the name became synonymous with this particular shade of red, even as synthetic versions or similar natural pigments from other regions became available. The color #c80815 is a modern digital representation of this historical color.
First Recorded Use
Likely 15th-16th century (as a pigment name), though the exact first documented use of the specific phrase 'Venetian Red' is harder to pinpoint precisely. The pigment itself has a long history.
Cultural Associations
The color evokes the rich artistic heritage of Venice, particularly the vibrant and sensual palettes of the Venetian Renaissance painters. It is often associated with warmth, earthiness, and a certain historical gravitas. It can be seen in many Old Master paintings, frescoes, and architectural elements. In modern contexts, it is used in art, design, and fashion to convey a sense of classicism, warmth, or rustic elegance.
Code Snippets
/* Background */
.element {
background-color: #C80815;
}
/* Text */
.element {
color: #C80815;
}
/* Border */
.element {
border: 1px solid #C80815;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C80815,
#08C8BB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C80815,
#08C8BB
);
}
// SCSS variable
$venetian-red: #C80815;
// With RGB channels (useful for rgba() usage)
$venetian-red-r: 200;
$venetian-red-g: 8;
$venetian-red-b: 21;
// Usage
.element {
background-color: $venetian-red;
color: rgba($venetian-red-r, $venetian-red-g, $venetian-red-b, 0.8);
}