Dim Gray (Neutral)
#955D5D
RGB: 149, 93, 93
Color OverviewHEX #955D5D

#955D5D Color Code Information

In the RGB color space, #955D5D is composed of 58% red, 36% green, and 36% blue. In the HSL color space, it has a hue of 0°, saturation of 23%, and lightness of 47%.

HEX
#955D5D
RGB
149, 93, 93
HSL
0°, 23%, 47%
HSV
0°, 38%, 58%
CMYK
0%, 38%, 38%, 42%
Name Match
Dim Gray
Closest Standard

Shades of #955D5D (Darker Variations)

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

Tints of #955D5D (Lighter Variations)

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

Tones of #955D5D (Muted Variations)

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

Color Harmonies for #955D5D

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

Developer Code Snippets & Tailwind CSS

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

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