CSS Named Color

Copy-ready color values

HEX#FFFAFA
RGBrgb(255, 250, 250)
HSLhsl(0, 100%, 99%)
HSVhsv(0, 2%, 100%)
CMYK approx.cmyk(0, 2, 2, 0)

Color value table

FormatValueCopy
HEX#FFFAFA
RGBrgb(255, 250, 250)
HSLhsl(0, 100%, 99%)
HSVhsv(0, 2%, 100%)
CMYK approx.cmyk(0, 2, 2, 0)
CSS keywordsnow

Contrast and classification

LightLightness1.03:1Contrast with white20.31:1Contrast with blackGrayscaleColor family

Shade and tint preview

White 10%
#FFFBFB

White 30%
#FFFCFC

White 70%
#FFFEFE

White 90%
#FFFFFF

Black 10%
#E6E1E1

Black 30%
#B3AFAF

Black 70%
#4D4B4B

Black 90%
#1A1919

Harmony palettes

Complementary

#000505
#3D4141

Analogous

#FEFAFB
#FFFAFA

Triadic

#FAFAFF
#FAFFFA

Split complementary

#2E3232
#000404

Using Snow

Snow 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-snow: #fffafa;
}

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

$snow: #fffafa;

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