Charcoal (Neutral)
#191B2B
RGB: 25, 27, 43
Color OverviewHEX #191B2B

#191B2B Color Code Information

In the RGB color space, #191B2B is composed of 10% red, 11% green, and 17% blue. In the HSL color space, it has a hue of 233°, saturation of 26%, and lightness of 13%.

HEX
#191B2B
RGB
25, 27, 43
HSL
233°, 26%, 13%
HSV
233°, 42%, 17%
CMYK
42%, 37%, 0%, 83%
Name Match
Charcoal
Closest Standard

Shades of #191B2B (Darker Variations)

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

Tints of #191B2B (Lighter Variations)

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

Tones of #191B2B (Muted Variations)

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

Color Harmonies for #191B2B

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 #191B2B Background
Contrast Ratio against Pure White (#FFFFFF):17.03 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #191B2B Background
Contrast Ratio against Pure Black (#000000):1.23 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #191B2B;
}

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