CSS Named Color

Copy-ready color values

HEX#FFA07A
RGBrgb(255, 160, 122)
HSLhsl(17, 100%, 74%)
HSVhsv(17, 52%, 100%)
CMYK approx.cmyk(0, 37, 52, 0)

Color value table

FormatValueCopy
HEX#FFA07A
RGBrgb(255, 160, 122)
HSLhsl(17, 100%, 74%)
HSVhsv(17, 52%, 100%)
CMYK approx.cmyk(0, 37, 52, 0)
CSS keywordlightsalmon

Contrast and classification

LightLightness1.99:1Contrast with white10.56:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFAA87

White 30%
#FFBDA2

White 70%
#FFE3D7

White 90%
#FFF6F2

Black 10%
#E6906E

Black 30%
#B37055

Black 70%
#4D3025

Black 90%
#1A100C

Harmony palettes

Complementary

#005F85
#3D85A2

Analogous

#F4A08A
#FF9B7F

Triadic

#A07AFF
#7AFFA0

Split complementary

#2E7C9B
#004E6D

Using Lightsalmon

Lightsalmon 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-lightsalmon: #ffa07a;
}

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

$lightsalmon: #ffa07a;

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