Tawny
HEX: #CD5700 | Modern Palette
Color Specifications
#CD5700
205, 87, 0
25°, 100% ,40%
0, 58, 100, 20
About Tawny
Tawny (#CD5700) is a color with RGB(205, 87, 0) and HSL(25.5°, 100%, 40.2%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0076CD, which creates strong contrast. Its triadic palette includes #00CD57 and #5700CD. The name comes from tané (Old French).
- HEX: #CD5700
- RGB: 205, 87, 0
- HSL: 25.5°, 100%, 40.2%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0076CD
- Triadic colors: #00CD57, #5700CD
- The name comes from tané (Old French).
Live Components
Color Palettes
Tawny #CD5700 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
Tawny #CD5700 pairs with #0076CD as its complementary color, and #00CD57 and #5700CD 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 'tawny' entered English from Old French 'tané', which itself is derived from 'tan' (oak bark used in tanning leather). This connection to tanning explains the color's association with a brownish-orange hue, similar to tanned leather. Early uses often described animal fur, particularly lions, or human skin that was sun-darkened. Over time, its application broadened to describe various natural elements, such as autumn leaves, certain types of wine, and the plumage of birds.
First Recorded Use
c. 1386
Cultural Associations
Tawny is often associated with autumn and harvest seasons due to the color of changing leaves. It is also a common descriptor for certain breeds of animals (e.g., tawny owl, tawny frogmouth) and specific types of wine (e.g., Tawny Port). In heraldry, 'tenné' or 'tawny' is a stain, a non-standard color, often represented as orange or brownish-orange, and is sometimes associated with dishonor or ambition, though its use is rare compared to the primary tinctures.
Code Snippets
/* Background */
.element {
background-color: #CD5700;
}
/* Text */
.element {
color: #CD5700;
}
/* Border */
.element {
border: 1px solid #CD5700;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CD5700,
#0076CD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CD5700,
#0076CD
);
}
// SCSS variable
$tawny: #CD5700;
// With RGB channels (useful for rgba() usage)
$tawny-r: 205;
$tawny-g: 87;
$tawny-b: 0;
// Usage
.element {
background-color: $tawny;
color: rgba($tawny-r, $tawny-g, $tawny-b, 0.8);
}