Sienna
HEX: #882D17 | Modern Palette
Color Specifications
#882D17
136, 45, 23
11°, 83% ,53%
0, 66.91, 83.09, 46.67
About Sienna
Sienna (#882D17) is a color with RGB(136, 45, 23) and HSL(11.68°, 83.09%, 53.33%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #177288, which creates strong contrast. Its triadic palette includes #17882D and #2D1788. The name comes from Siena (Italian).
- HEX: #882D17
- RGB: 136, 45, 23
- HSL: 11.68°, 83.09%, 53.33%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #177288
- Triadic colors: #17882D, #2D1788
- The name comes from Siena (Italian).
Live Components
Color Palettes
Sienna #882D17 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Sienna #882D17 pairs with #177288 as its complementary color, and #17882D and #2D1788 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Sienna' primarily refers to the city of Siena in Tuscany, Italy. The city itself has Etruscan and Roman origins. The color 'sienna' (specifically 'raw sienna' and 'burnt sienna') is an earth pigment that has been used since antiquity. It is named after Siena because the pigment was historically mined near the city. As a given name, 'Sienna' is a relatively modern adoption, gaining popularity in English-speaking countries in the late 20th and early 21st centuries, likely influenced by the color and the pleasant sound of the name.
First Recorded Use
As a place name and later as a color name (referring to the pigment 'terra di Siena')
Cultural Associations
Siena is famous for its medieval architecture, the Palio horse race, and its rich artistic heritage. The color sienna is widely used in art and design, known for its warm, earthy tones. The name 'Sienna' evokes images of Italian landscapes, art, and history.
Code Snippets
/* Background */
.element {
background-color: #882D17;
}
/* Text */
.element {
color: #882D17;
}
/* Border */
.element {
border: 1px solid #882D17;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#882D17,
#25C4EB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#882D17,
#25C4EB
);
}
// SCSS variable
$sienna: #882D17;
// With RGB channels (useful for rgba() usage)
$sienna-r: 136;
$sienna-g: 45;
$sienna-b: 23;
// Usage
.element {
background-color: $sienna;
color: rgba($sienna-r, $sienna-g, $sienna-b, 0.8);
}