CSS Named Color

Copy-ready color values

HEX#FFFAF0
RGBrgb(255, 250, 240)
HSLhsl(40, 100%, 97%)
HSVhsv(40, 6%, 100%)
CMYK approx.cmyk(0, 2, 6, 0)

Color value table

FormatValueCopy
HEX#FFFAF0
RGBrgb(255, 250, 240)
HSLhsl(40, 100%, 97%)
HSVhsv(40, 6%, 100%)
CMYK approx.cmyk(0, 2, 6, 0)
CSS keywordfloralwhite

Contrast and classification

LightLightness1.04:1Contrast with white20.18:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#FFFBF2

White 30%
#FFFCF5

White 70%
#FFFEFB

White 90%
#FFFFFE

Black 10%
#E6E1D8

Black 30%
#B3AFA8

Black 70%
#4D4B48

Black 90%
#1A1918

Harmony palettes

Complementary

#00050F
#3D4149

Analogous

#FEFAF2
#FFF9F1

Triadic

#FAF0FF
#F0FFFA

Split complementary

#2E323A
#00040C

Using Floralwhite

Floralwhite 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-floralwhite: #fffaf0;
}

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

$floralwhite: #fffaf0;

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