Redwood
HEX: #A45A52 | Modern Palette
Color Specifications
#A45A52
164, 90, 82
5°, 50% ,64%
0, 45.12, 50, 35.69
About Redwood
Redwood (#A45A52) is a color with RGB(164, 90, 82) and HSL(5.85°, 50%, 64.31%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #529CA4, which creates strong contrast. Its triadic palette includes #52A45A and #5A52A4. The name comes from Redwood (English).
- HEX: #A45A52
- RGB: 164, 90, 82
- HSL: 5.85°, 50%, 64.31%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #529CA4
- Triadic colors: #52A45A, #5A52A4
- The name comes from Redwood (English).
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 #A45A52 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'redwood' is a descriptive English compound word, combining 'red' (referring to the distinctive color of the wood) and 'wood' (referring to the material from trees). While the trees themselves have existed for millennia, the specific English term became common as these particular species (Coast Redwood, *Sequoia sempervirens*, and Giant Sequoia, *Sequoiadendron giganteum*) became known to English speakers. Indigenous peoples had their own names for these trees long before European arrival. The scientific classification and common English name solidified during the 19th century as botanists and settlers documented the flora of Western North America.
First Recorded Use
The term 'redwood' in reference to the trees of California is documented from the mid-19th century, coinciding with increased exploration and settlement of the region.
Cultural Associations
Redwood trees hold significant cultural importance, particularly in California, where they are iconic symbols of the state's natural heritage. They are revered for their immense size, longevity, and majestic beauty, attracting tourists and conservationists worldwide. They feature prominently in environmental movements and are often associated with themes of ancient wisdom, resilience, and the power of nature. Many national and state parks are dedicated to preserving redwood forests. The wood itself has been historically valued for its durability and resistance to decay, used in construction, furniture, and other applications, though logging practices have been a source of environmental debate.
Code Snippets
/* Background */
.element {
background-color: #A45A52;
}
/* Text */
.element {
color: #A45A52;
}
/* Border */
.element {
border: 1px solid #A45A52;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A45A52,
#76C9D1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A45A52,
#76C9D1
);
}
// SCSS variable
$redwood: #A45A52;
// With RGB channels (useful for rgba() usage)
$redwood-r: 164;
$redwood-g: 90;
$redwood-b: 82;
// Usage
.element {
background-color: $redwood;
color: rgba($redwood-r, $redwood-g, $redwood-b, 0.8);
}