CSS Named Color

Copy-ready color values

HEX#FAEBD7
RGBrgb(250, 235, 215)
HSLhsl(34, 78%, 91%)
HSVhsv(34, 14%, 98%)
CMYK approx.cmyk(0, 6, 14, 2)

Color value table

FormatValueCopy
HEX#FAEBD7
RGBrgb(250, 235, 215)
HSLhsl(34, 78%, 91%)
HSVhsv(34, 14%, 98%)
CMYK approx.cmyk(0, 6, 14, 2)
CSS keywordantiquewhite

Contrast and classification

LightLightness1.17:1Contrast with white17.93:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FBEDDB

White 30%
#FCF1E3

White 70%
#FEF9F3

White 90%
#FFFDFB

Black 10%
#E1D4C2

Black 30%
#AFA597

Black 70%
#4B4741

Black 90%
#191816

Harmony palettes

Complementary

#051428
#414C5C

Analogous

#F8EBDB
#FAE9D9

Triadic

#EBD7FA
#D7FAEB

Split complementary

#323E4F
#041021

Using Antiquewhite

Antiquewhite 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-antiquewhite: #faebd7;
}

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

$antiquewhite: #faebd7;

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