Dim Gray (Neutral)
#68747B
RGB: 104, 116, 123
Color OverviewHEX #68747B

#68747B Color Code Information

In the RGB color space, #68747B is composed of 41% red, 45% green, and 48% blue. In the HSL color space, it has a hue of 202°, saturation of 8%, and lightness of 45%.

HEX
#68747B
RGB
104, 116, 123
HSL
202°, 8%, 45%
HSV
202°, 15%, 48%
CMYK
15%, 6%, 0%, 52%
Name Match
Dim Gray
Closest Standard

Shades of #68747B (Darker Variations)

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

Tints of #68747B (Lighter Variations)

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

Tones of #68747B (Muted Variations)

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

Color Harmonies for #68747B

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

Developer Code Snippets & Tailwind CSS

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

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