Charcoal
HEX: #36454F | Modern Palette
Color Specifications
#36454F
54, 69, 79
204°, 31% ,30%
31.65, 12.66, 0, 69.02
About Charcoal
Charcoal (#36454F) is a color with RGB(54, 69, 79) and HSL(204°, 31.65%, 30.98%). It is commonly associated with Calm, Luxury moods. In design, it fits Muted, Cool styles and is suitable for Text, Print. Its complementary color is #4F4036, which creates strong contrast. Its triadic palette includes #4F3645 and #454F36. The name comes from Charcoal (English).
- HEX: #36454F
- RGB: 54, 69, 79
- HSL: 204°, 31.65%, 30.98%
- Mood: Calm, Luxury
- Style: Muted, Cool
- Use case: Text, Print
- Complementary color: #4F4036
- Triadic colors: #4F3645, #454F36
- The name comes from Charcoal (English).
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 #36454F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'charcoal' is believed to be a compound of 'char' (from Old English 'cierran' meaning 'to turn, change, return') and 'coal' (from Old English 'col'). The 'char' element likely refers to the process of burning or scorching. Early charcoal production was essential for metallurgy, particularly for iron smelting, as it provided a hotter and cleaner-burning fuel than wood. It was also used for drawing and as a component in gunpowder. Its use dates back to ancient times, with evidence of charcoal production found in archaeological sites worldwide.
First Recorded Use
Late 14th century
Cultural Associations
Charcoal has played a significant role in human culture. In art, it's one of the oldest drawing materials, prized for its rich blacks and ease of smudging. Historically, it was crucial for industrial development, powering forges and furnaces. In some cultures, charcoal has been used for purification, filtration (e.g., water, air), and even in traditional medicine. Its distinctive smell is often associated with barbecues and campfires, evoking a sense of primal cooking and outdoor living.
Code Snippets
/* Background */
.element {
background-color: #36454F;
}
/* Text */
.element {
color: #36454F;
}
/* Border */
.element {
border: 1px solid #36454F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#36454F,
#684A36
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#36454F,
#684A36
);
}
// SCSS variable
$charcoal: #36454F;
// With RGB channels (useful for rgba() usage)
$charcoal-r: 54;
$charcoal-g: 69;
$charcoal-b: 79;
// Usage
.element {
background-color: $charcoal;
color: rgba($charcoal-r, $charcoal-g, $charcoal-b, 0.8);
}