Raw Sienna
HEX: #D68A59 | Modern Palette
Color Specifications
#D68A59
214, 138, 89
23°, 60% ,59%
0, 36, 58, 16
About Raw Sienna
Raw Sienna (#D68A59) is a color with RGB(214, 138, 89) and HSL(23.5°, 60.4%, 59.4%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #59A5D6, which creates strong contrast. Its triadic palette includes #59D68A and #8A59D6. The name comes from terra di Siena (Italian).
- HEX: #D68A59
- RGB: 214, 138, 89
- HSL: 23.5°, 60.4%, 59.4%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #59A5D6
- Triadic colors: #59D68A, #8A59D6
- The name comes from terra di Siena (Italian).
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 #D68A59 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Sienna is a natural earth pigment containing iron oxide and manganese oxide. It was originally extracted from deposits near Siena, Italy, hence its name. Raw sienna is the natural form of the pigment, characterized by its yellowish-brown hue. When heated, it transforms into burnt sienna, which has a reddish-brown color. It has been used by artists since antiquity, but gained significant prominence during the Renaissance in European painting. Its stability, permanence, and warm tone made it a valuable pigment for underpaintings, landscapes, and portraits.
First Recorded Use
c. 15th century
Cultural Associations
The color 'Raw Sienna' evokes natural, earthy tones often associated with landscapes, soil, and rustic environments. In art, it's frequently used to depict natural light, skin tones, and the warmth of the sun. Its historical use in Renaissance art connects it to classical painting techniques and the mastery of light and shadow. It is a staple in many artists' palettes and is considered a fundamental earth tone.
Code Snippets
/* Background */
.element {
background-color: #D68A59;
}
/* Text */
.element {
color: #D68A59;
}
/* Border */
.element {
border: 1px solid #D68A59;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D68A59,
#59A5D6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D68A59,
#59A5D6
);
}
// SCSS variable
$raw-sienna: #D68A59;
// With RGB channels (useful for rgba() usage)
$raw-sienna-r: 214;
$raw-sienna-g: 138;
$raw-sienna-b: 89;
// Usage
.element {
background-color: $raw-sienna;
color: rgba($raw-sienna-r, $raw-sienna-g, $raw-sienna-b, 0.8);
}