Redwood

HEX: #A45A52 | Modern Palette

On White
5.04:1
PASS
On Black
4.16:1
FAIL

Color Specifications

HEX
#A45A52
RGB
164, 90, 82
HSL
5°, 50% ,64%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #76764F
Protanopia #666653
Tritanopia #A45959
Achromatopsia #6F6F6F

Frequently Asked Questions

Redwood (#A45A52) is a color with RGB(164, 90, 82) and HSL(5.85°, 50%, 64.31%).

#A45A52 pairs strongly with #529CA4 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#A45A52 is suitable for Text, Button, Logo and works well with Warm styles.

#A45A52 is commonly associated with Romantic.

The name Redwood is linked to Redwood from English, meaning A large, coniferous tree, especially of the genus Sequoia or Sequoiadendron, known for its reddish wood..

Name, History & Etymology

Origin Word Redwood
Meaning A large, coniferous tree, especially of the genus Sequoia or Sequoiadendron, known for its reddish wood.
Language English
First Recorded Use 19th Century

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.

Similar Named Colors

Rose Vale #AB4E52 ΔE 4.93
Deep Chestnut #B94E48 ΔE 5.33
English Red #AB4B52 ΔE 5.94
Bittersweet Shimmer #BF4F51 ΔE 6.34

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);
}