Eerie Black

HEX: #1B1B1B | Modern Palette

On White
17.22:1
PASS
On Black
1.22:1
FAIL

Color Specifications

HEX
#1B1B1B
RGB
27, 27, 27
HSL
0°, 0% ,10%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Minimal
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #1B1B1B
Protanopia #1B1B1B
Tritanopia #1B1B1B
Achromatopsia #1B1B1B

Frequently Asked Questions

Eerie Black (#1B1B1B) is a color with RGB(27, 27, 27) and HSL(0°, 0%, 10.59%).

#1B1B1B pairs strongly with Eerie Black (#1B1B1B) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#1B1B1B is suitable for Text, Background, Print and works well with Monochrome, Warm styles.

#1B1B1B is commonly associated with Minimal.

The name Eerie Black is linked to Eerie Black from English, meaning A very dark shade of black, often associated with a sense of mystery, foreboding, or the supernatural..

Name, History & Etymology

Origin Word Eerie Black
Meaning A very dark shade of black, often associated with a sense of mystery, foreboding, or the supernatural.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Onyx #0F0F0F ΔE 3.32
Smoky Black #100C08 ΔE 4.37
Rich Black (FOGRA39) #010203 ΔE 5.57
Others #-0 ΔE 5.84

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);
}