Tuscany

HEX: #C09999 | Modern Palette

On White
2.54:1
FAIL
On Black
8.26:1
PASS

Color Specifications

HEX
#C09999
RGB
192, 153, 153
HSL
0°, 20% ,75%
CMYK
0, 20.31, 20.31, 24.71

About Tuscany

Tuscany (#C09999) is a color with RGB(192, 153, 153) and HSL(0°, 20.31%, 75.29%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Border. Its complementary color is #99C0C0, which creates strong contrast. Its triadic palette includes #99C099 and #9999C0. The name comes from Tuscia (Latin).

  • HEX: #C09999
  • RGB: 192, 153, 153
  • HSL: 0°, 20.31%, 75.29%
  • Style: Pastel, Warm
  • Use case: Text, Background, Border
  • Complementary color: #99C0C0
  • Triadic colors: #99C099, #9999C0
  • The name comes from Tuscia (Latin).

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 #C09999 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm

Accessibility Simulation

Deuteranopia #A6A698
Protanopia #9E9E99
Tritanopia #C09999
Achromatopsia #A2A2A2

Frequently Asked Questions

Tuscany (#C09999) is a color with RGB(192, 153, 153) and HSL(0°, 20.31%, 75.29%).

#C09999 pairs strongly with #99C0C0 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#C09999 is suitable for Text, Background, Border and works well with Pastel, Warm styles.

The name Tuscany is linked to Tuscia from Latin, meaning Land of the Tusci (Etruscans).

Name, History & Etymology

Origin Word Tuscia
Meaning Land of the Tusci (Etruscans)
Language Latin
First Recorded Use Antiquity

History

Tuscany, known in Italian as Toscana, is a region in central Italy. Its history is deeply intertwined with the Etruscan civilization, which flourished in the area before the rise of Rome. The Romans conquered the Etruscans and named the region 'Tuscia'. After the fall of the Roman Empire, the region saw various rulers, including the Lombards and Franks. During the Middle Ages and Renaissance, Tuscany became a hub of art, culture, and commerce, particularly with the rise of city-states like Florence, Siena, and Pisa. The Medici family of Florence played a pivotal role in shaping the region's destiny and its artistic legacy. In the 19th century, Tuscany became part of the unified Kingdom of Italy.

First Recorded Use

The name 'Tuscia' was used by the Romans to refer to the land inhabited by the Etruscans.

Cultural Associations

Tuscany is renowned worldwide for its rich artistic heritage, stunning landscapes, and culinary traditions. It is the birthplace of the Italian Renaissance, home to masterpieces by artists like Leonardo da Vinci, Michelangelo, and Botticelli. Major cities like Florence, Siena, and Pisa are UNESCO World Heritage Sites. The region's rolling hills, cypress-lined avenues, vineyards, and olive groves are iconic. Tuscan cuisine is famous for its simplicity and high-quality ingredients, including olive oil, Chianti wine, Pecorino cheese, and various meat dishes like Bistecca alla Fiorentina. The Tuscan dialect also formed the basis of modern standard Italian.

Similar Named Colors

Rosy Brown #BC8F8F ΔE 3.13
Pastel Pink #DEA5A4 ΔE 6.46
Pale Chestnut #DDADAF ΔE 6.75
Silver Pink #C4AEAD ΔE 7.49

Code Snippets

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

/* Text */
.element {
    color: #C09999;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #C09999,
        #B3CDCD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #C09999,
        #B3CDCD
    );
}

// SCSS variable
$tuscany: #C09999;

// With RGB channels (useful for rgba() usage)
$tuscany-r: 192;
$tuscany-g: 153;
$tuscany-b: 153;

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