CSS Named Color
Copy-ready color values
HEX
#FAEBD7RGB
rgb(250, 235, 215)HSL
hsl(34, 78%, 91%)HSV
hsv(34, 14%, 98%)CMYK approx.
cmyk(0, 6, 14, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FAEBD7 | |
| RGB | rgb(250, 235, 215) | |
| HSL | hsl(34, 78%, 91%) | |
| HSV | hsv(34, 14%, 98%) | |
| CMYK approx. | cmyk(0, 6, 14, 2) | |
| CSS keyword | antiquewhite |
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#414C5CAnalogous
#F8EBDB#FAE9D9Triadic
#EBD7FA#D7FAEBSplit complementary
#323E4F#041021Using 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"