Light Steel Blue (Blue)
#B2CCCB
RGB: 178, 204, 203
Color OverviewHEX #B2CCCB

#B2CCCB Color Code Information

In the RGB color space, #B2CCCB is composed of 70% red, 80% green, and 80% blue. In the HSL color space, it has a hue of 178°, saturation of 20%, and lightness of 75%.

HEX
#B2CCCB
RGB
178, 204, 203
HSL
178°, 20%, 75%
HSV
178°, 13%, 80%
CMYK
13%, 0%, 0%, 20%
Name Match
Light Steel Blue
Closest Standard

Shades of #B2CCCB (Darker Variations)

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

Tints of #B2CCCB (Lighter Variations)

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

Tones of #B2CCCB (Muted Variations)

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

Color Harmonies for #B2CCCB

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

Developer Code Snippets & Tailwind CSS

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

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