CSS Named Color
Copy-ready color values
HEX
#FFE4C4RGB
rgb(255, 228, 196)HSL
hsl(33, 100%, 88%)HSV
hsv(33, 23%, 100%)CMYK approx.
cmyk(0, 11, 23, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFE4C4 | |
| RGB | rgb(255, 228, 196) | |
| HSL | hsl(33, 100%, 88%) | |
| HSV | hsv(33, 23%, 100%) | |
| CMYK approx. | cmyk(0, 11, 23, 0) | |
| CSS keyword | bisque |
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#3D526AAnalogous
#FCE4CB#FFE0C8Triadic
#E4C4FF#C4FFE4Split complementary
#2E445E#001630Using 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"