Cedar Chest

HEX: #C95A49 | Modern Palette

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

Color Specifications

HEX
#C95A49
RGB
201, 90, 73
HSL
7°, 63% ,78%
CMYK
0, 55.22, 63.68, 21.18

About Cedar Chest

Cedar Chest (#C95A49) is a color with RGB(201, 90, 73) and HSL(7.97°, 63.68%, 78.82%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #49B8C9, which creates strong contrast. Its triadic palette includes #49C95A and #5A49C9. The name comes from Cedar Chest (English).

  • HEX: #C95A49
  • RGB: 201, 90, 73
  • HSL: 7.97°, 63.68%, 78.82%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Accent
  • Complementary color: #49B8C9
  • Triadic colors: #49C95A, #5A49C9
  • The name comes from Cedar Chest (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 #C95A49 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #878743
Protanopia #6E6E4A
Tritanopia #CA5858
Achromatopsia #7C7C7C

Frequently Asked Questions

Cedar Chest (#C95A49) is a color with RGB(201, 90, 73) and HSL(7.97°, 63.68%, 78.82%).

#C95A49 pairs strongly with #49B8C9 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#C95A49 is suitable for Text, Button, Accent and works well with Warm styles.

#C95A49 is commonly associated with Romantic.

The name Cedar Chest is linked to Cedar Chest from English, meaning A chest, typically made of cedar wood, used for storing linens, clothing, or other valuables, often with the aromatic and insect-repelling properties of cedar being a key feature..

Name, History & Etymology

Origin Word Cedar Chest
Meaning A chest, typically made of cedar wood, used for storing linens, clothing, or other valuables, often with the aromatic and insect-repelling properties of cedar being a key feature.
Language English
First Recorded Use Late 19th Century

History

The use of aromatic woods for storage has ancient roots, with various cultures utilizing woods like cedar, cypress, or sandalwood for their pleasant scent and pest-repelling qualities. In Western cultures, particularly from the 17th century onwards, chests were common household items for storage. The specific 'cedar chest' as a distinct piece of furniture, often associated with a bride's trousseau or hope chest, gained significant popularity in the late 19th and early 20th centuries. Companies like Lane Furniture Company, founded in 1912, became synonymous with cedar chests, marketing them heavily as essential items for young women preparing for marriage. The aromatic red cedar (Juniperus virginiana) was particularly favored in North America for its strong, pleasant scent and its ability to deter moths and other insects, thus protecting woolens and other textiles.

First Recorded Use

The exact first use is difficult to pinpoint, but the concept of cedar-lined storage chests became popular in the late 19th century, particularly with the rise of mass-produced furniture and the understanding of cedar's properties for preserving textiles.

Cultural Associations

Cedar chests hold significant cultural symbolism, particularly as 'hope chests' or 'trousseau chests.' They were traditionally given to young women to collect items (linens, clothing, household goods) in anticipation of marriage. This practice symbolized preparation for domestic life and the establishment of a new home. The chest itself often became an heirloom, passed down through generations. The scent of cedar is also strongly associated with home, comfort, and preservation. While less common as a 'hope chest' today, cedar chests are still valued for their aesthetic appeal and practical storage benefits.

Similar Named Colors

Dark Coral #CD5B45 ΔE 1.73
Jelly Bean #DA614E ΔE 4.04
Chestnut #CD5C5C ΔE 5.69
Vermilion #E34234 ΔE 5.75

Code Snippets

/* Background */
.element {
    background-color: #C95A49;
}

/* Text */
.element {
    color: #C95A49;
}

/* Border */
.element {
    border: 1px solid #C95A49;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #C95A49,
        #A7E2EB
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #C95A49,
        #A7E2EB
    );
}

// SCSS variable
$cedar-chest: #C95A49;

// With RGB channels (useful for rgba() usage)
$cedar-chest-r: 201;
$cedar-chest-g: 90;
$cedar-chest-b: 73;

// Usage
.element {
    background-color: $cedar-chest;
    color: rgba($cedar-chest-r, $cedar-chest-g, $cedar-chest-b, 0.8);
}