Snow
HEX: #FFFAFA | Modern Palette
Color Specifications
#FFFAFA
255, 250, 250
0°, 100% ,99%
0, 2, 2, 0
About Snow
Snow (#FFFAFA) is a color with RGB(255, 250, 250) and HSL(0°, 100%, 99%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #FAFFFF, which creates strong contrast. Its triadic palette includes #FAFFFA and #FAFAFF. The name comes from Snow (English).
- HEX: #FFFAFA
- RGB: 255, 250, 250
- HSL: 0°, 100%, 99%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #FAFFFF
- Triadic colors: #FAFFFA, #FAFAFF
- The name comes from Snow (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #FFFAFA from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'snow' derives from Old English 'snāw', which itself comes from Proto-Germanic '*snaiwaz' and ultimately from Proto-Indo-European '*sneygʷʰ-' meaning 'to snow, to be cold'. This root is also the source of words for snow in other Indo-European languages, such as Latin 'nix' (genitive 'nivis'), Greek 'nipha', Russian 'sneg', and Irish 'sneachta'. The color 'Snow' (#fffafa) is a very pale, off-white color, often used to describe a shade that is almost pure white but with a very slight hint of warmth or creaminess, reminiscent of freshly fallen snow.
First Recorded Use
Before 900 AD
Cultural Associations
Snow holds significant cultural importance across many societies, particularly those in colder climates. It is associated with winter, holidays (like Christmas), recreation (skiing, snowboarding), and often symbolizes purity, stillness, and renewal. In literature and art, snow can evoke feelings of beauty, isolation, danger, or peace. The specific color 'Snow' is frequently used in design and fashion to convey elegance, cleanliness, and minimalism.
Code Snippets
/* Background */
.element {
background-color: #FFFAFA;
}
/* Text */
.element {
color: #FFFAFA;
}
/* Border */
.element {
border: 1px solid #FFFAFA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFFAFA,
#FAFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFFAFA,
#FAFFFF
);
}
// SCSS variable
$snow: #FFFAFA;
// With RGB channels (useful for rgba() usage)
$snow-r: 255;
$snow-g: 250;
$snow-b: 250;
// Usage
.element {
background-color: $snow;
color: rgba($snow-r, $snow-g, $snow-b, 0.8);
}