CSS Named Color
Copy-ready color values
HEX
#FFA07ARGB
rgb(255, 160, 122)HSL
hsl(17, 100%, 74%)HSV
hsv(17, 52%, 100%)CMYK approx.
cmyk(0, 37, 52, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFA07A | |
| RGB | rgb(255, 160, 122) | |
| HSL | hsl(17, 100%, 74%) | |
| HSV | hsv(17, 52%, 100%) | |
| CMYK approx. | cmyk(0, 37, 52, 0) | |
| CSS keyword | lightsalmon |
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#3D85A2Analogous
#F4A08A#FF9B7FTriadic
#A07AFF#7AFFA0Split complementary
#2E7C9B#004E6DUsing 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"