Cordovan
HEX: #893F45 | Modern Palette
Color Specifications
#893F45
137, 63, 69
355°, 54% ,53%
0, 54.01, 49.64, 46.27
About Cordovan
Cordovan (#893F45) is a color with RGB(137, 63, 69) and HSL(355.14°, 54.01%, 53.73%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #3F8983, which creates strong contrast. Its triadic palette includes #45893F and #3F4589. The name comes from Cordobán (Spanish).
- HEX: #893F45
- RGB: 137, 63, 69
- HSL: 355.14°, 54.01%, 53.73%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #3F8983
- Triadic colors: #45893F, #3F4589
- The name comes from Cordobán (Spanish).
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 #893F45 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Cordovan' originally referred to a fine, high-quality leather produced in Córdoba, Spain, particularly from goat or horse hide. This leather was renowned throughout Europe during the Middle Ages and Renaissance for its durability, flexibility, and smooth finish. Over time, the term evolved to describe the characteristic deep, reddish-brown color often associated with this type of leather, especially when polished. In modern usage, 'Cordovan' primarily denotes this specific color, though 'shell cordovan' still refers to a very specific, high-grade horsehide leather known for its unique properties and luster.
First Recorded Use
12th-13th century (as a type of leather)
Cultural Associations
Cordovan leather was a luxury item, used for high-end footwear, bookbinding, and other fine leather goods. Its association with quality and craftsmanship contributed to the perception of the color as sophisticated and classic. The color itself evokes a sense of richness and warmth, often seen in traditional men's dress shoes, leather furniture, and accessories. It's a color that suggests heritage and enduring style.
Code Snippets
/* Background */
.element {
background-color: #893F45;
}
/* Text */
.element {
color: #893F45;
}
/* Border */
.element {
border: 1px solid #893F45;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#893F45,
#49C9BE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#893F45,
#49C9BE
);
}
// SCSS variable
$cordovan: #893F45;
// With RGB channels (useful for rgba() usage)
$cordovan-r: 137;
$cordovan-g: 63;
$cordovan-b: 69;
// Usage
.element {
background-color: $cordovan;
color: rgba($cordovan-r, $cordovan-g, $cordovan-b, 0.8);
}