CSS Named Color

Copy-ready color values

HEX#FFDEAD
RGBrgb(255, 222, 173)
HSLhsl(36, 100%, 84%)
HSVhsv(36, 32%, 100%)
CMYK approx.cmyk(0, 13, 32, 0)

Color value table

FormatValueCopy
HEX#FFDEAD
RGBrgb(255, 222, 173)
HSLhsl(36, 100%, 84%)
HSVhsv(36, 32%, 100%)
CMYK approx.cmyk(0, 13, 32, 0)
CSS keywordnavajowhite

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
#3D567C

Analogous

#FBDEB7
#FFD8B3

Triadic

#DEADFF
#ADFFDE

Split complementary

#2E4971
#001B43

Using 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"