Warm Black
HEX: #004242 | Modern Palette
Color Specifications
#004242
0, 66, 66
180°, 100% ,25%
100, 0, 0, 74.12
About Warm Black
Warm Black (#004242) is a color with RGB(0, 66, 66) and HSL(180°, 100%, 25.88%). It is commonly associated with Bold, Luxury moods. In design, it fits Cool styles and is suitable for Text, Button, Accent. Its complementary color is #420000, which creates strong contrast. Its triadic palette includes #420042 and #424200. The name comes from Warm Black (English).
- HEX: #004242
- RGB: 0, 66, 66
- HSL: 180°, 100%, 25.88%
- Mood: Bold, Luxury
- Style: Cool
- Use case: Text, Button, Accent
- Complementary color: #420000
- Triadic colors: #420042, #424200
- The name comes from Warm Black (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 #004242 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
While artists have always manipulated black pigments to achieve various effects, including warmer blacks, the explicit naming of 'Warm Black' as a distinct color option became more common with the rise of standardized color palettes in commercial products. It differentiates itself from 'Cool Black' (which might have blue or green undertones) and 'Neutral Black' (a pure, unadulterated black). Its use is prevalent in design, fashion, and art where a softer, less stark black is desired.
First Recorded Use
The specific term 'Warm Black' as a named color or paint shade likely emerged in the 20th century with the expansion of commercial paint and art supply industries, though the concept of mixing warm tones into black existed much earlier in art.
Cultural Associations
In interior design, warm blacks can create a sophisticated and inviting atmosphere, contrasting with the often stark or industrial feel of pure black. In fashion, it can offer a softer alternative to traditional black, complementing a wider range of skin tones and other colors. Artists often use warm blacks for shadows that recede or to depict objects that absorb light in a way that suggests warmth or depth.
Code Snippets
/* Background */
.element {
background-color: #004242;
}
/* Text */
.element {
color: #004242;
}
/* Border */
.element {
border: 1px solid #004242;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#004242,
#840000
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#004242,
#840000
);
}
// SCSS variable
$warm-black: #004242;
// With RGB channels (useful for rgba() usage)
$warm-black-r: 0;
$warm-black-g: 66;
$warm-black-b: 66;
// Usage
.element {
background-color: $warm-black;
color: rgba($warm-black-r, $warm-black-g, $warm-black-b, 0.8);
}