Tuscany
HEX: #C09999 | Modern Palette
Color Specifications
#C09999
192, 153, 153
0°, 20% ,75%
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
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 #C09999 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A6A698
#9E9E99
#C09999
#A2A2A2
Frequently Asked Questions
Name, History & Etymology
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.
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);
}