Tuscan Red

HEX: #66424D | Modern Palette

On White
8.57:1
PASS
On Black
2.45:1
FAIL

Color Specifications

HEX
#66424D
RGB
102, 66, 77
HSL
341°, 35% ,40%
CMYK
0, 35.29, 24.51, 60

About Tuscan Red

Tuscan Red (#66424D) is a color with RGB(102, 66, 77) and HSL(341.67°, 35.29%, 40%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #42665B, which creates strong contrast. Its triadic palette includes #4D6642 and #424D66. The name comes from Tuscan Red (English).

  • HEX: #66424D
  • RGB: 102, 66, 77
  • HSL: 341.67°, 35.29%, 40%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #42665B
  • Triadic colors: #4D6642, #424D66
  • 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 #66424D from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #4F4F4C
Protanopia #47474D
Tritanopia #654444
Achromatopsia #4C4C4C

Frequently Asked Questions

Tuscan Red (#66424D) is a color with RGB(102, 66, 77) and HSL(341.67°, 35.29%, 40%).

#66424D pairs strongly with #42665B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#66424D is suitable for Text, Logo, Print and works well with Warm styles.

#66424D is commonly associated with Romantic.

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

Name, History & Etymology

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

History

The color 'Tuscan Red' draws its inspiration from the rich, earthy palette characteristic of the Tuscan region of Italy. This includes the terracotta roofs, brickwork, and the reddish soil (terra rossa) prevalent in the landscape. The association with Tuscany evokes images of Renaissance art, rustic charm, and warm, natural environments. As a named color, it became popular in various applications, from interior design and fashion to industrial paints, for its warm, inviting, and sophisticated qualities. It's often seen as a more muted or earthy alternative to brighter reds.

First Recorded Use

The specific color name 'Tuscan Red' likely emerged as part of a broader trend in the late 19th and early 20th centuries to name colors after geographical locations, natural elements, or cultural associations, particularly as new pigments became available and color standardization began to develop in industries like paint, textiles, and ceramics. While a precise 'first use' date for this exact hex code is difficult to pinpoint, the concept of 'Tuscan Red' as a named color would fall within this period.

Cultural Associations

Tuscany is renowned for its art, architecture, and landscapes, all of which heavily feature warm, earthy tones. 'Tuscan Red' therefore carries connotations of Italian heritage, rustic elegance, warmth, and a connection to nature and history. It's often used to evoke a sense of comfort, tradition, and Mediterranean charm in design and decor. The color can also be associated with the rich red wines produced in the region.

Similar Named Colors

Eggplant #614051 ΔE 2.90
Catawba #703642 ΔE 6.15
Rose Ebony #674846 ΔE 6.18
Old Mauve #673147 ΔE 6.34

Code Snippets

/* Background */
.element {
    background-color: #66424D;
}

/* Text */
.element {
    color: #66424D;
}

/* Border */
.element {
    border: 1px solid #66424D;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #66424D,
        #428A74
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #66424D,
        #428A74
    );
}

// SCSS variable
$tuscan-red: #66424D;

// With RGB channels (useful for rgba() usage)
$tuscan-red-r: 102;
$tuscan-red-g: 66;
$tuscan-red-b: 77;

// Usage
.element {
    background-color: $tuscan-red;
    color: rgba($tuscan-red-r, $tuscan-red-g, $tuscan-red-b, 0.8);
}