CSS Named Color
Copy-ready color values
HEX
#FF7F50RGB
rgb(255, 127, 80)HSL
hsl(16, 100%, 66%)HSV
hsv(16, 69%, 100%)CMYK approx.
cmyk(0, 50, 69, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FF7F50 | |
| RGB | rgb(255, 127, 80) | |
| HSL | hsl(16, 100%, 66%) | |
| HSV | hsv(16, 69%, 100%) | |
| CMYK approx. | cmyk(0, 50, 69, 0) | |
| CSS keyword | coral |
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#3D9EC2Analogous
#F07F65#FF7956Triadic
#7F50FF#50FF7FSplit complementary
#2E97BD#006990Using 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"