Tuscan Red
HEX: #7C4848 | Modern Palette
Color Specifications
#7C4848
124, 72, 72
0°, 41% ,48%
0, 41.94, 41.94, 51.37
About Tuscan Red
Tuscan Red (#7C4848) is a color with RGB(124, 72, 72) and HSL(0°, 41.94%, 48.63%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #487C7C, which creates strong contrast. Its triadic palette includes #487C48 and #48487C. The name comes from Tuscan Red (English).
- HEX: #7C4848
- RGB: 124, 72, 72
- HSL: 0°, 41.94%, 48.63%
- Mood: Romantic
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #487C7C
- Triadic colors: #487C48, #48487C
- The name comes from Tuscan 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 #7C4848 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Tuscan Red' is not a primary or historically ancient color name like 'red' or 'blue'. Instead, it's a descriptive compound name that evokes a specific geographical and cultural aesthetic. Tuscany, a region in central Italy, is famous for its distinctive landscape, architecture, and art, often characterized by warm, earthy tones, including terracotta roofs, brickwork, and the reddish soil. The 'red' in 'Tuscan Red' refers to this specific reddish-brown hue, rather than a pure red. Its popularity as a named color likely grew as people sought to categorize and describe a wider range of colors, often drawing inspiration from natural landscapes or cultural artifacts. It's commonly found in paint names, textile descriptions, and interior design palettes.
First Recorded Use
The term 'Tuscan Red' likely emerged as a descriptive color name in English, possibly gaining traction with the rise of color standardization in art and industry. While specific first documented use is hard to pinpoint without extensive historical linguistic research, its conceptual origin points to a period when regional associations with colors became common.
Cultural Associations
Tuscan Red is strongly associated with the rustic charm and natural beauty of Tuscany. It evokes images of sun-drenched landscapes, ancient villas, terracotta pots, and traditional Italian craftsmanship. In interior design, it's often used to create a warm, inviting, and somewhat traditional or Mediterranean atmosphere. It pairs well with natural materials like wood, stone, and wrought iron. Culturally, it represents a connection to Italian heritage, warmth, and a sense of timeless elegance.
Code Snippets
/* Background */
.element {
background-color: #7C4848;
}
/* Text */
.element {
color: #7C4848;
}
/* Border */
.element {
border: 1px solid #7C4848;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7C4848,
#48B0B0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7C4848,
#48B0B0
);
}
// SCSS variable
$tuscan-red: #7C4848;
// With RGB channels (useful for rgba() usage)
$tuscan-red-r: 124;
$tuscan-red-g: 72;
$tuscan-red-b: 72;
// Usage
.element {
background-color: $tuscan-red;
color: rgba($tuscan-red-r, $tuscan-red-g, $tuscan-red-b, 0.8);
}