Linen (Neutral)
#F8F0E0
RGB: 248, 240, 224
Color OverviewHEX #F8F0E0

#F8F0E0 Color Code Information

In the RGB color space, #F8F0E0 is composed of 97% red, 94% green, and 88% blue. In the HSL color space, it has a hue of 40°, saturation of 63%, and lightness of 93%.

HEX
#F8F0E0
RGB
248, 240, 224
HSL
40°, 63%, 93%
HSV
40°, 10%, 97%
CMYK
0%, 3%, 10%, 3%
Name Match
Linen
Closest Standard

Shades of #F8F0E0 (Darker Variations)

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

Tints of #F8F0E0 (Lighter Variations)

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

Tones of #F8F0E0 (Muted Variations)

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

Color Harmonies for #F8F0E0

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

Developer Code Snippets & Tailwind CSS

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

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