CSS Named Color

Copy-ready color values

HEX#FF7F50
RGBrgb(255, 127, 80)
HSLhsl(16, 100%, 66%)
HSVhsv(16, 69%, 100%)
CMYK approx.cmyk(0, 50, 69, 0)

Color value table

FormatValueCopy
HEX#FF7F50
RGBrgb(255, 127, 80)
HSLhsl(16, 100%, 66%)
HSVhsv(16, 69%, 100%)
CMYK approx.cmyk(0, 50, 69, 0)
CSS keywordcoral

Contrast and classification

LightLightness2.50:1Contrast with white8.40:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FF8C62

White 30%
#FFA585

White 70%
#FFD9CB

White 90%
#FFF2EE

Black 10%
#E67248

Black 30%
#B35938

Black 70%
#4D2618

Black 90%
#1A0D08

Harmony palettes

Complementary

#0080AF
#3D9EC2

Analogous

#F07F65
#FF7956

Triadic

#7F50FF
#50FF7F

Split complementary

#2E97BD
#006990

Using Coral

Coral works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.

CSS, SCSS, and Tailwind examples

:root {
  --color-coral: #ff7f50;
}

.button-primary {
  background: var(--color-coral);
  color: #000000;
}

$coral: #ff7f50;

// Tailwind arbitrary value
class="bg-[#ff7f50] text-white"