Viridian (Green)
#558B52
RGB: 85, 139, 82
Color OverviewHEX #558B52

#558B52 Color Code Information

In the RGB color space, #558B52 is composed of 33% red, 55% green, and 32% blue. In the HSL color space, it has a hue of 117°, saturation of 26%, and lightness of 43%.

HEX
#558B52
RGB
85, 139, 82
HSL
117°, 26%, 43%
HSV
117°, 41%, 55%
CMYK
39%, 0%, 41%, 45%
Name Match
Viridian
Closest Standard

Shades of #558B52 (Darker Variations)

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

Tints of #558B52 (Lighter Variations)

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

Tones of #558B52 (Muted Variations)

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

Color Harmonies for #558B52

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 #558B52 Background
Contrast Ratio against Pure White (#FFFFFF):4.04 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #558B52 Background
Contrast Ratio against Pure Black (#000000):5.2 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #558B52;
}

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