Dark Slate Gray (Neutral)
#206D3D
RGB: 32, 109, 61
Color OverviewHEX #206D3D

#206D3D Color Code Information

In the RGB color space, #206D3D is composed of 13% red, 43% green, and 24% blue. In the HSL color space, it has a hue of 143°, saturation of 55%, and lightness of 28%.

HEX
#206D3D
RGB
32, 109, 61
HSL
143°, 55%, 28%
HSV
143°, 71%, 43%
CMYK
71%, 0%, 44%, 57%
Name Match
Dark Slate Gray
Closest Standard

Shades of #206D3D (Darker Variations)

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

Tints of #206D3D (Lighter Variations)

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

Tones of #206D3D (Muted Variations)

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

Color Harmonies for #206D3D

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

Developer Code Snippets & Tailwind CSS

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

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