Tuscan Red

HEX: #7C4848 | Modern Palette

On White
7.30:1
PASS
On Black
2.88:1
FAIL

Color Specifications

HEX
#7C4848
RGB
124, 72, 72
HSL
0°, 41% ,48%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #5B5B46
Protanopia #505048
Tritanopia #7C4848
Achromatopsia #565656

Frequently Asked Questions

Tuscan Red (#7C4848) is a color with RGB(124, 72, 72) and HSL(0°, 41.94%, 48.63%).

#7C4848 pairs strongly with #487C7C as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#7C4848 is suitable for Text, Logo, Print and works well with Warm styles.

#7C4848 is commonly associated with Romantic.

The name Tuscan Red is linked to Tuscan Red from English, meaning A reddish-brown color reminiscent of the terracotta and earth tones found in the Tuscany region of Italy..

Name, History & Etymology

Origin Word Tuscan Red
Meaning A reddish-brown color reminiscent of the terracotta and earth tones found in the Tuscany region of Italy.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

Deep Coffee #704241 ΔE 3.05
Bole #79443B ΔE 4.31
Cordovan #893F45 ΔE 4.65
Solid Pink #893843 ΔE 6.24

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);
}