Powder Blue (Blue)
#C0E0F1
RGB: 192, 224, 241
Color OverviewHEX #C0E0F1

#C0E0F1 Color Code Information

In the RGB color space, #C0E0F1 is composed of 75% red, 88% green, and 95% blue. In the HSL color space, it has a hue of 201°, saturation of 64%, and lightness of 85%.

HEX
#C0E0F1
RGB
192, 224, 241
HSL
201°, 64%, 85%
HSV
201°, 20%, 95%
CMYK
20%, 7%, 0%, 5%
Name Match
Powder Blue
Closest Standard

Shades of #C0E0F1 (Darker Variations)

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

Tints of #C0E0F1 (Lighter Variations)

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

Tones of #C0E0F1 (Muted Variations)

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

Color Harmonies for #C0E0F1

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

Developer Code Snippets & Tailwind CSS

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

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