Eerie Black
HEX: #1B1B1B | Modern Palette
Color Specifications
#1B1B1B
27, 27, 27
0°, 0% ,10%
0, 0, 0, 89.41
About Eerie Black
Eerie Black (#1B1B1B) is a color with RGB(27, 27, 27) and HSL(0°, 0%, 10.59%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Warm styles and is suitable for Text, Background, Print. Its complementary color is Eerie Black (#1B1B1B), which creates strong contrast. Its triadic palette includes Eerie Black (#1B1B1B) and Eerie Black (#1B1B1B). The name comes from Eerie Black (English).
- HEX: #1B1B1B
- RGB: 27, 27, 27
- HSL: 0°, 0%, 10.59%
- Mood: Minimal
- Style: Monochrome, Warm
- Use case: Text, Background, Print
- Complementary color: Eerie Black (#1B1B1B)
- Triadic colors: Eerie Black (#1B1B1B), Eerie Black (#1B1B1B)
- The name comes from Eerie 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 #1B1B1B from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#1B1B1B
#1B1B1B
#1B1B1B
#1B1B1B
Frequently Asked Questions
Name, History & Etymology
History
The word 'eerie' dates back to the late 18th century, possibly from Scottish English, meaning 'frightened' or 'frightening.' 'Black' is one of the oldest color terms in many languages, referring to the absence of light. The combination 'Eerie Black' is a descriptive name, not a historically significant pigment. It's a modern designation, often found in digital color palettes, art supplies, and design contexts to convey a specific mood or aesthetic. Its hex code #1b1b1b indicates it's a very dark gray, almost black, but not pure black (#000000), allowing for subtle depth and texture in digital rendering.
First Recorded Use
The specific color name 'Eerie Black' (and its hex code #1b1b1b) likely emerged with the advent of digital color systems and web design, where specific, evocative names were given to a wide range of colors. While 'eerie' and 'black' have much older origins, their combination as a formal color name is more recent.
Cultural Associations
The name 'Eerie Black' immediately evokes themes of horror, mystery, and the supernatural. It's a color that might be used to represent shadows, night, gothic aesthetics, or elements of the unknown. In popular culture, it could be associated with Halloween, horror films, dark fantasy, or even sophisticated, minimalist design that aims for a dramatic effect. It suggests a depth that is not merely dark, but also unsettling or intriguing.
Code Snippets
/* Background */
.element {
background-color: #1B1B1B;
}
/* Text */
.element {
color: #1B1B1B;
}
/* Border */
.element {
border: 1px solid #1B1B1B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1B1B1B,
#1B1B1B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1B1B1B,
#1B1B1B
);
}
// SCSS variable
$eerie-black: #1B1B1B;
// With RGB channels (useful for rgba() usage)
$eerie-black-r: 27;
$eerie-black-g: 27;
$eerie-black-b: 27;
// Usage
.element {
background-color: $eerie-black;
color: rgba($eerie-black-r, $eerie-black-g, $eerie-black-b, 0.8);
}