Caput Mortuum
HEX: #592720 | Modern Palette
Color Specifications
#592720
89, 39, 32
7°, 64% ,34%
0, 56.18, 64.04, 65.1
About Caput Mortuum
Caput Mortuum (#592720) is a color with RGB(89, 39, 32) and HSL(7.37°, 64.04%, 34.9%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #205259, which creates strong contrast. Its triadic palette includes #205927 and #272059. The name comes from Caput Mortuum (Latin).
- HEX: #592720
- RGB: 89, 39, 32
- HSL: 7.37°, 64.04%, 34.9%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #205259
- Triadic colors: #205927, #272059
- The name comes from Caput Mortuum (Latin).
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 #592720 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
In alchemy, 'Caput Mortuum' referred to the worthless residue left over after a chemical process, particularly distillation or sublimation. It symbolized the inert, lifeless remains after the 'spirit' or 'essence' had been extracted. It was often a dark, reddish-brown powder. The term also came to be used more broadly to describe anything rendered useless or valueless after a process.
First Recorded Use
Likely 16th century, though the concept existed earlier.
Cultural Associations
Beyond alchemy, 'Caput Mortuum' evolved into a specific pigment color, a deep reddish-brown or purplish-brown, derived from iron oxide. It's known for its permanence and opacity and has been used by artists for centuries. The name itself evokes a sense of decay, finality, and the remnants of something once living or active.
Code Snippets
/* Background */
.element {
background-color: #592720;
}
/* Text */
.element {
color: #592720;
}
/* Border */
.element {
border: 1px solid #592720;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#592720,
#208492
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#592720,
#208492
);
}
// SCSS variable
$caput-mortuum: #592720;
// With RGB channels (useful for rgba() usage)
$caput-mortuum-r: 89;
$caput-mortuum-g: 39;
$caput-mortuum-b: 32;
// Usage
.element {
background-color: $caput-mortuum;
color: rgba($caput-mortuum-r, $caput-mortuum-g, $caput-mortuum-b, 0.8);
}