Black (Neutral)
#000000
RGB: 0, 0, 0
Color OverviewHEX #000000

#000000 Color Code Information

In the RGB color space, #000000 is composed of 0% red, 0% green, and 0% blue. In the HSL color space, it has a hue of 0°, saturation of 0%, and lightness of 0%.

HEX
#000000
RGB
0, 0, 0
HSL
0°, 0%, 0%
HSV
0°, 0%, 0%
CMYK
0%, 0%, 0%, 100%
Name Match
Black
Closest Standard

Shades of #000000 (Darker Variations)

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

Tints of #000000 (Lighter Variations)

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

Tones of #000000 (Muted Variations)

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

Color Harmonies for #000000

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

Developer Code Snippets & Tailwind CSS

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

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