Light Coral (Red)
#FF7A88
RGB: 255, 122, 136
Color OverviewHEX #FF7A88

#FF7A88 Color Code Information

In the RGB color space, #FF7A88 is composed of 100% red, 48% green, and 53% blue. In the HSL color space, it has a hue of 354°, saturation of 100%, and lightness of 74%.

HEX
#FF7A88
RGB
255, 122, 136
HSL
354°, 100%, 74%
HSV
354°, 52%, 100%
CMYK
0%, 52%, 47%, 0%
Name Match
Light Coral
Closest Standard

Shades of #FF7A88 (Darker Variations)

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

Tints of #FF7A88 (Lighter Variations)

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

Tones of #FF7A88 (Muted Variations)

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

Color Harmonies for #FF7A88

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

Developer Code Snippets & Tailwind CSS

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

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