Dim Gray (Neutral)
#686B65
RGB: 104, 107, 101
Color OverviewHEX #686B65

#686B65 Color Code Information

In the RGB color space, #686B65 is composed of 41% red, 42% green, and 40% blue. In the HSL color space, it has a hue of 90°, saturation of 3%, and lightness of 41%.

HEX
#686B65
RGB
104, 107, 101
HSL
90°, 3%, 41%
HSV
90°, 6%, 42%
CMYK
3%, 0%, 6%, 58%
Name Match
Dim Gray
Closest Standard

Shades of #686B65 (Darker Variations)

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

Tints of #686B65 (Lighter Variations)

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

Tones of #686B65 (Muted Variations)

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

Color Harmonies for #686B65

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

Developer Code Snippets & Tailwind CSS

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

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