Smoky Black
HEX: #100C08 | Modern Palette
Color Specifications
#100C08
16, 12, 8
30°, 50% ,6%
0, 25, 50, 93.73
About Smoky Black
Smoky Black (#100C08) is a color with RGB(16, 12, 8) and HSL(30°, 50%, 6.27%). It is commonly associated with Bold moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #080C10, which creates strong contrast. Its triadic palette includes #08100C and #0C0810. The name comes from Smoky Black (English).
- HEX: #100C08
- RGB: 16, 12, 8
- HSL: 30°, 50%, 6.27%
- Mood: Bold
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #080C10
- Triadic colors: #08100C, #0C0810
- The name comes from Smoky 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 #100C08 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#0D0D08
#0C0C08
#100C0C
#0D0D0D
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'black' is ancient, one of the first colors perceived and named. 'Smoky' as a descriptor for color also has a long history, referring to the greyish, often dark, translucent quality of smoke. Combining them to 'smoky black' creates a more specific hue that is not a pure, deep black, but one softened or tinged with the visual qualities of smoke. This color often evokes a sense of mystery, sophistication, or a slightly muted intensity. Its use became more prevalent as color palettes expanded beyond primary and secondary colors, allowing for more descriptive and evocative names.
First Recorded Use
While 'smoky' and 'black' have existed for centuries, the specific compound 'smoky black' as a distinct color descriptor likely gained traction in the late 19th or early 20th century, particularly in fashion, art, and industrial design contexts where nuanced color descriptions became more common. Earlier uses might be more descriptive than a formal color name.
Cultural Associations
Smoky Black is often associated with elegance, mystery, and a certain understated power. It can be seen in formal wear, luxury goods, and interior design. It's a versatile color that can be both modern and classic. In some contexts, it might also evoke a sense of industrial grit or a natural, unpolished aesthetic, depending on the materials and textures it's applied to. It's less stark than pure black, offering a softer, more nuanced alternative.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #100C08;
}
/* Text */
.element {
color: #100C08;
}
/* Border */
.element {
border: 1px solid #100C08;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#100C08,
#081018
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#100C08,
#081018
);
}
// SCSS variable
$smoky-black: #100C08;
// With RGB channels (useful for rgba() usage)
$smoky-black-r: 16;
$smoky-black-g: 12;
$smoky-black-b: 8;
// Usage
.element {
background-color: $smoky-black;
color: rgba($smoky-black-r, $smoky-black-g, $smoky-black-b, 0.8);
}