CSS Named Color
Copy-ready color values
HEX
#FFDEADRGB
rgb(255, 222, 173)HSL
hsl(36, 100%, 84%)HSV
hsv(36, 32%, 100%)CMYK approx.
cmyk(0, 13, 32, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFDEAD | |
| RGB | rgb(255, 222, 173) | |
| HSL | hsl(36, 100%, 84%) | |
| HSV | hsv(36, 32%, 100%) | |
| CMYK approx. | cmyk(0, 13, 32, 0) | |
| CSS keyword | navajowhite |
Contrast and classification
LightLightness1.29:1Contrast with white16.30:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFE1B5
White 30%#FFE8C6
White 70%#FFF5E6
White 90%#FFFCF7
Black 10%#E6C89C
Black 30%#B39B79
Black 70%#4D4334
Black 90%#1A1611
Harmony palettes
Complementary
#002152#3D567CAnalogous
#FBDEB7#FFD8B3Triadic
#DEADFF#ADFFDESplit complementary
#2E4971#001B43Using Navajowhite
Navajowhite 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-navajowhite: #ffdead;
}
.button-primary {
background: var(--color-navajowhite);
color: #000000;
}
$navajowhite: #ffdead;
// Tailwind arbitrary value
class="bg-[#ffdead] text-white"