Fawn
HEX: #E5AA70 | Modern Palette
Color Specifications
#E5AA70
229, 170, 112
29°, 69% ,66%
0, 26, 51, 10
About Fawn
Fawn (#E5AA70) is a color with RGB(229, 170, 112) and HSL(29.7°, 69.2%, 66.9%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #70ABE5, which creates strong contrast. Its triadic palette includes #70E5AA and #AA70E5. The name comes from faon (Old French).
- HEX: #E5AA70
- RGB: 229, 170, 112
- HSL: 29.7°, 69.2%, 66.9%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #70ABE5
- Triadic colors: #70E5AA, #AA70E5
- The name comes from faon (Old French).
Live Components
Color Palettes
Fawn #E5AA70 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
Fawn #E5AA70 pairs with #70ABE5 as its complementary color, and #70E5AA and #AA70E5 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 word 'fawn' entered English from Old French 'faon', which itself derived from Latin 'fetus' (meaning 'offspring' or 'a bringing forth'). Initially, 'fawn' could refer to the young of various animals, but by the 17th century, its use became primarily restricted to a young deer. The color 'fawn' (a light yellowish-brown) is named after the typical color of a young deer's coat.
First Recorded Use
14th Century
Cultural Associations
Fawns are widely recognized symbols of innocence, new life, and vulnerability in many cultures. They frequently appear in children's literature, folklore, and art, often representing nature's delicate beauty. The Bambi character is a prime example of a fawn's cultural impact.
Code Snippets
/* Background */
.element {
background-color: #E5AA70;
}
/* Text */
.element {
color: #E5AA70;
}
/* Border */
.element {
border: 1px solid #E5AA70;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E5AA70,
#70ABE5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E5AA70,
#70ABE5
);
}
// SCSS variable
$fawn: #E5AA70;
// With RGB channels (useful for rgba() usage)
$fawn-r: 229;
$fawn-g: 170;
$fawn-b: 112;
// Usage
.element {
background-color: $fawn;
color: rgba($fawn-r, $fawn-g, $fawn-b, 0.8);
}