Dark Terra Cotta
HEX: #CC4E5C | Modern Palette
Color Specifications
#CC4E5C
204, 78, 92
353°, 55% ,55%
0, 62, 55, 20
About Dark Terra Cotta
Dark Terra Cotta (#CC4E5C) is a color with RGB(204, 78, 92) and HSL(353.3°, 55.3%, 55.3%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #4ECCBE, which creates strong contrast. Its triadic palette includes #5CCC4E and #4E5CCC. The name comes from Terra Cotta (Italian (for 'Terra Cotta')).
- HEX: #CC4E5C
- RGB: 204, 78, 92
- HSL: 353.3°, 55.3%, 55.3%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #4ECCBE
- Triadic colors: #5CCC4E, #4E5CCC
- The name comes from Terra Cotta (Italian (for 'Terra Cotta')).
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 #CC4E5C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Terra cotta as a material has a rich history dating back to prehistoric times, used for pottery, sculptures, and building materials across many cultures (e.g., Chinese Terracotta Army, Greek and Roman pottery, Etruscan temples). The color 'terra cotta' naturally derives from the iron oxides present in the clay, which turn reddish-brown when fired. 'Dark Terra Cotta' refers to a deeper, more saturated or darker shade of this characteristic reddish-brown, often with a hint of orange or pink. Its use in design and fashion reflects a connection to natural, earthy tones and a rustic or artisanal aesthetic.
First Recorded Use
The term 'terra cotta' itself has been used for centuries to describe unglazed, fired clay. The specific color 'Dark Terra Cotta' as a named color is more modern, likely emerging with standardized color naming conventions in the 19th or 20th century.
Cultural Associations
The color evokes warmth, earthiness, and a sense of history and craftsmanship. It is often associated with Mediterranean architecture, Southwestern American design, and traditional pottery. It can convey a feeling of comfort, stability, and natural beauty. In fashion, it's seen as an autumnal or earthy tone, often paired with other natural colors.
Code Snippets
/* Background */
.element {
background-color: #CC4E5C;
}
/* Text */
.element {
color: #CC4E5C;
}
/* Border */
.element {
border: 1px solid #CC4E5C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CC4E5C,
#4ECCBE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CC4E5C,
#4ECCBE
);
}
// SCSS variable
$dark-terra-cotta: #CC4E5C;
// With RGB channels (useful for rgba() usage)
$dark-terra-cotta-r: 204;
$dark-terra-cotta-g: 78;
$dark-terra-cotta-b: 92;
// Usage
.element {
background-color: $dark-terra-cotta;
color: rgba($dark-terra-cotta-r, $dark-terra-cotta-g, $dark-terra-cotta-b, 0.8);
}