CSS Named Color
Copy-ready color values
HEX
#FFFAFARGB
rgb(255, 250, 250)HSL
hsl(0, 100%, 99%)HSV
hsv(0, 2%, 100%)CMYK approx.
cmyk(0, 2, 2, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFFAFA | |
| RGB | rgb(255, 250, 250) | |
| HSL | hsl(0, 100%, 99%) | |
| HSV | hsv(0, 2%, 100%) | |
| CMYK approx. | cmyk(0, 2, 2, 0) | |
| CSS keyword | snow |
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#3D4141Analogous
#FEFAFB#FFFAFATriadic
#FAFAFF#FAFFFASplit complementary
#2E3232#000404Using 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"