Tomato (Red)
#F15B5B
RGB: 241, 91, 91
Color OverviewHEX #F15B5B

#F15B5B Color Code Information

In the RGB color space, #F15B5B is composed of 95% red, 36% green, and 36% blue. In the HSL color space, it has a hue of 0°, saturation of 84%, and lightness of 65%.

HEX
#F15B5B
RGB
241, 91, 91
HSL
0°, 84%, 65%
HSV
0°, 62%, 95%
CMYK
0%, 62%, 62%, 5%
Name Match
Tomato
Closest Standard

Shades of #F15B5B (Darker Variations)

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

Tints of #F15B5B (Lighter Variations)

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

Tones of #F15B5B (Muted Variations)

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

Color Harmonies for #F15B5B

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

Developer Code Snippets & Tailwind CSS

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

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