CSS Named Color

Copy-ready color values

HEX#FFE4C4
RGBrgb(255, 228, 196)
HSLhsl(33, 100%, 88%)
HSVhsv(33, 23%, 100%)
CMYK approx.cmyk(0, 11, 23, 0)

Color value table

FormatValueCopy
HEX#FFE4C4
RGBrgb(255, 228, 196)
HSLhsl(33, 100%, 88%)
HSVhsv(33, 23%, 100%)
CMYK approx.cmyk(0, 11, 23, 0)
CSS keywordbisque

Contrast and classification

LightLightness1.22:1Contrast with white17.15:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFE7CA

White 30%
#FFECD6

White 70%
#FFF7ED

White 90%
#FFFCF9

Black 10%
#E6CDB0

Black 30%
#B3A089

Black 70%
#4D443B

Black 90%
#1A1714

Harmony palettes

Complementary

#001B3B
#3D526A

Analogous

#FCE4CB
#FFE0C8

Triadic

#E4C4FF
#C4FFE4

Split complementary

#2E445E
#001630

Using Bisque

Bisque 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-bisque: #ffe4c4;
}

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

$bisque: #ffe4c4;

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