Dim Gray (Neutral)
#68666B
RGB: 104, 102, 107
Color OverviewHEX #68666B

#68666B Color Code Information

In the RGB color space, #68666B is composed of 41% red, 40% green, and 42% blue. In the HSL color space, it has a hue of 264°, saturation of 2%, and lightness of 41%.

HEX
#68666B
RGB
104, 102, 107
HSL
264°, 2%, 41%
HSV
264°, 5%, 42%
CMYK
3%, 5%, 0%, 58%
Name Match
Dim Gray
Closest Standard

Shades of #68666B (Darker Variations)

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

Tints of #68666B (Lighter Variations)

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

Tones of #68666B (Muted Variations)

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

Color Harmonies for #68666B

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

Developer Code Snippets & Tailwind CSS

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

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