Mahogany
HEX: #C04000 | Modern Palette
Color Specifications
#C04000
192, 64, 0
20°, 100% ,37%
0, 67, 100, 25
About Mahogany
Mahogany (#C04000) is a color with RGB(192, 64, 0) and HSL(20°, 100%, 37.6%). 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 #0080C0, which creates strong contrast. Its triadic palette includes #00C040 and #4000C0. The name comes from caoba (Spanish).
- HEX: #C04000
- RGB: 192, 64, 0
- HSL: 20°, 100%, 37.6%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0080C0
- Triadic colors: #00C040, #4000C0
- The name comes from caoba (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 #C04000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Mahogany refers to several species of tropical hardwood trees in the genus Swietenia, native to the Americas, and also to the wood obtained from them. The wood is prized for its durability, workability, and beautiful reddish-brown luster. It became highly sought after in Europe from the 17th century onwards, particularly for furniture making, shipbuilding, and musical instruments. Its popularity led to extensive logging and, eventually, to the endangerment of some species. The trade in mahogany played a significant role in colonial economies.
First Recorded Use
The English word 'mahogany' is believed to have entered the language around the late 16th or early 17th century, likely from Spanish 'caoba' or a similar indigenous Caribbean term, possibly via Portuguese. Early mentions relate to its discovery and use in the Americas.
Cultural Associations
Mahogany is synonymous with luxury, craftsmanship, and classic elegance. It was the wood of choice for renowned furniture makers like Thomas Chippendale and George Hepplewhite. Its rich color and grain are often associated with traditional, high-quality furnishings and interiors. The term 'mahogany row' or 'mahogany desk' can metaphorically refer to positions of power or authority, particularly in government or corporate settings, due to the historical use of mahogany in executive offices.
Code Snippets
/* Background */
.element {
background-color: #C04000;
}
/* Text */
.element {
color: #C04000;
}
/* Border */
.element {
border: 1px solid #C04000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C04000,
#0080C0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C04000,
#0080C0
);
}
// SCSS variable
$mahogany: #C04000;
// With RGB channels (useful for rgba() usage)
$mahogany-r: 192;
$mahogany-g: 64;
$mahogany-b: 0;
// Usage
.element {
background-color: $mahogany;
color: rgba($mahogany-r, $mahogany-g, $mahogany-b, 0.8);
}