Celadon (Green)
#B6CC99
RGB: 182, 204, 153
Color OverviewHEX #B6CC99

#B6CC99 Color Code Information

In the RGB color space, #B6CC99 is composed of 71% red, 80% green, and 60% blue. In the HSL color space, it has a hue of 86°, saturation of 33%, and lightness of 70%.

HEX
#B6CC99
RGB
182, 204, 153
HSL
86°, 33%, 70%
HSV
86°, 25%, 80%
CMYK
11%, 0%, 25%, 20%
Name Match
Celadon
Closest Standard

Shades of #B6CC99 (Darker Variations)

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

Tints of #B6CC99 (Lighter Variations)

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

Tones of #B6CC99 (Muted Variations)

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

Color Harmonies for #B6CC99

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

Developer Code Snippets & Tailwind CSS

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

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