CSS Named Color
Copy-ready color values
HEX
#E9967ARGB
rgb(233, 150, 122)HSL
hsl(15, 72%, 70%)HSV
hsv(15, 48%, 91%)CMYK approx.
cmyk(0, 36, 48, 9)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #E9967A | |
| RGB | rgb(233, 150, 122) | |
| HSL | hsl(15, 72%, 70%) | |
| HSV | hsv(15, 48%, 91%) | |
| CMYK approx. | cmyk(0, 36, 48, 9) | |
| CSS keyword | darksalmon |
Contrast and classification
LightLightness2.31:1Contrast with white9.11:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#EBA187
White 30%#F0B6A2
White 70%#F8E0D7
White 90%#FDF5F2
Black 10%#D2876E
Black 30%#A36955
Black 70%#462D25
Black 90%#170F0C
Harmony palettes
Complementary
#166985#4E8DA2Analogous
#DF9687#E9937DTriadic
#967AE9#7AE996Split complementary
#40849B#12566DUsing Darksalmon
Darksalmon 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-darksalmon: #e9967a;
}
.button-primary {
background: var(--color-darksalmon);
color: #000000;
}
$darksalmon: #e9967a;
// Tailwind arbitrary value
class="bg-[#e9967a] text-white"