Charcoal (Neutral)
#1D1C1F
RGB: 29, 28, 31
Color OverviewHEX #1D1C1F

#1D1C1F Color Code Information

In the RGB color space, #1D1C1F is composed of 11% red, 11% green, and 12% blue. In the HSL color space, it has a hue of 260°, saturation of 5%, and lightness of 12%.

HEX
#1D1C1F
RGB
29, 28, 31
HSL
260°, 5%, 12%
HSV
260°, 10%, 12%
CMYK
6%, 10%, 0%, 88%
Name Match
Charcoal
Closest Standard

Shades of #1D1C1F (Darker Variations)

Shades are created by progressively mixing the base color with black.

Tints of #1D1C1F (Lighter Variations)

Tints are created by progressively mixing the base color with pure white.

Tones of #1D1C1F (Muted Variations)

Tones are created by mixing the base color with true neutral gray.

Color Harmonies for #1D1C1F

Calculated color schemes based on classic color wheel angles for graphic and web design.

WCAG Accessibility Contrast Ratios

Verification against Web Content Accessibility Guidelines (WCAG 2.1) standards for web text readability.

Sample Text on #1D1C1F Background
Contrast Ratio against Pure White (#FFFFFF):16.96 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #1D1C1F Background
Contrast Ratio against Pure Black (#000000):1.24 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #1D1C1F;
}

.element {
  color: #1D1C1F;
  background-color: #1D1C1F;
  border-color: #1D1C1F;
}
Tailwind CSS v4 Utility Classes
<!-- Tailwind Arbitrary Values -->
<div className="bg-[#1D1C1F] text-[#1D1C1F] border-[#1D1C1F]">
  Content styled with #1D1C1F
</div>