Azure (Blue)
#F0FCFF
RGB: 240, 252, 255
Color OverviewHEX #F0FCFF

#F0FCFF Color Code Information

In the RGB color space, #F0FCFF is composed of 94% red, 99% green, and 100% blue. In the HSL color space, it has a hue of 192°, saturation of 100%, and lightness of 97%.

HEX
#F0FCFF
RGB
240, 252, 255
HSL
192°, 100%, 97%
HSV
192°, 6%, 100%
CMYK
6%, 1%, 0%, 0%
Name Match
Azure
Closest Standard

Shades of #F0FCFF (Darker Variations)

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

Tints of #F0FCFF (Lighter Variations)

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

Tones of #F0FCFF (Muted Variations)

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

Color Harmonies for #F0FCFF

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

Developer Code Snippets & Tailwind CSS

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

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