CSS Named Color
Copy-ready color values
HEX
#FFFAF0RGB
rgb(255, 250, 240)HSL
hsl(40, 100%, 97%)HSV
hsv(40, 6%, 100%)CMYK approx.
cmyk(0, 2, 6, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFFAF0 | |
| RGB | rgb(255, 250, 240) | |
| HSL | hsl(40, 100%, 97%) | |
| HSV | hsv(40, 6%, 100%) | |
| CMYK approx. | cmyk(0, 2, 6, 0) | |
| CSS keyword | floralwhite |
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#3D4149Analogous
#FEFAF2#FFF9F1Triadic
#FAF0FF#F0FFFASplit complementary
#2E323A#00040CUsing 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"