#FBFAFA Snow
rgb(251, 250, 250)
Color conversions
- HEX
- #FBFAFA
- RGB
- rgb(251, 250, 250)
- RGBA
- rgba(251, 250, 250, 1)
- HSL
- hsl(0, 11%, 98%)
- HSV / HSB
- hsv(0, 0%, 98%)
- CMYK
- cmyk(0%, 0%, 0%, 2%)
Wide-gamut spaces
- XYZ
- xyz(91.222, 95.783, 104.106)
- LAB
- lab(98.35 0.33 0.12)
- LCH
- lch(98.35 0.35 19.43)
- OKLAB
- oklab(98.59% 0.001 0.0003)
- OKLCH
- oklch(98.59% 0.0011 17.18)
- Nearest name
- Snow
Shades, tints and tones
Color harmonies
The hue directly opposite on the color wheel. Maximum contrast, ideal for a single accent against a dominant brand color.
Neighbouring hues that share a temperature. The safest harmony for calm, cohesive interfaces.
Three hues evenly spaced 120 degrees apart. Vibrant and balanced — use one as dominant and the other two sparingly.
The complement split into two adjacent hues. Nearly the contrast of complementary with noticeably less tension.
Four hues at 90-degree intervals. A rich set for illustration, data visualisation, and category coding.
Two complementary pairs offset by 60 degrees. Gives two warm and two cool options in one system.
Similar colors
Opacity variations
#fbfafa1a
#fbfafa33
#fbfafa4d
#fbfafa66
#fbfafa80
#fbfafa99
#fbfafab3
#fbfafacc
#fbfafae6
#fbfafaff
Accessibility and contrast
On white
1.04:1
Body text Fail · Large text Fail
On black
20.16:1
Body text AAA · Large text AA
White-on-color contrast is 1.04:1.
Color blindness preview
Protanopia
No red cones — ~1% of men
Protanomaly
Reduced red sensitivity — ~1% of men
Deuteranopia
No green cones — ~1% of men
Deuteranomaly
Reduced green sensitivity — ~5% of men
Tritanopia
No blue cones — very rare
Tritanomaly
Reduced blue sensitivity — very rare
Achromatopsia
No color perception — ~1 in 30,000
Achromatomaly
Partial color perception — rare
Meaning, psychology and brand usage
Space, clarity, and the most underrated design decision
White is read as clean and honest, and it functions less as a colour than as breathing room. Slightly warm whites feel considered and reduce glare; pure #fff can feel clinical at full-screen scale.
Purity and simplicity in Western markets; mourning in much of East Asia, which matters for global product launches.
Lead white dominated painting for two millennia despite being poisonous, replaced by titanium white in the twentieth century — the same pigment that whitens paper, paint, and toothpaste today.
Choose the white deliberately. An off-white page surface with pure white cards creates hierarchy without a single border.
Common industries: Technology, Healthcare, Architecture, Skincare, Retail. Pairs well with near-black type, one saturated accent, soft gray borders.
Code exports
CSS
:root {
--color-snow: #fbfafa;
--color-snow-rgb: 251 250 250;
--color-snow-hsl: 0 11% 98%;
--color-snow-oklch: 98.59% 0.0011 17.18;
}
.element {
color: #fbfafa;
background-color: hsl(0, 11%, 98%);
border: 1px solid rgb(251 250 250 / 40%);
}SCSS
$snow: #fbfafa;
$snow-light: #fdfdfd;
$snow-dark: #7e7d7d;
.element {
color: $snow;
background: rgba($snow, 0.12);
&:hover {
color: darken($snow, 8%);
}
}LESS
@snow: #fbfafa;
@snow-light: lighten(@snow, 12%);
@snow-dark: darken(@snow, 12%);
.element {
color: @snow;
background: fade(@snow, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-snow-50: #fefefe;
--color-snow-100: #fefefe;
--color-snow-200: #fdfdfd;
--color-snow-300: #fdfcfc;
--color-snow-400: #fcfbfb;
--color-snow-500: #fbfafa;
--color-snow-600: #e2e1e1;
--color-snow-700: #b0afaf;
--color-snow-800: #7e7d7d;
--color-snow-900: #4b4b4b;
}
/* Usage */
<div class="bg-snow-500 text-snow-50 ring-snow-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#fbfafa]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$snow: #fbfafa;
$primary: $snow;
$theme-colors: map-merge($theme-colors, (
"snow": $snow
));
// Generates .text-snow, .bg-snow, .btn-snow
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color snow = Color(0xFFFBFAFA);
// As a MaterialColor swatch
const MaterialColor snowSwatch = MaterialColor(0xFFFBFAFA, <int, Color>{
50: Color(0xFFFEFEFE),
100: Color(0xFFFEFEFE),
200: Color(0xFFFDFDFD),
300: Color(0xFFFDFCFC),
400: Color(0xFFFCFBFB),
500: Color(0xFFFBFAFA),
600: Color(0xFFE2E1E1),
700: Color(0xFFB0AFAF),
800: Color(0xFF7E7D7D),
900: Color(0xFF4B4B4B),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #fbfafa — Snow
static let snow = Color(
red: 0.9843,
green: 0.9804,
blue: 0.9804
)
}
// UIKit
extension UIColor {
static let snow = UIColor(
red: 0.9843,
green: 0.9804,
blue: 0.9804,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="snow">#FBFAFA</color>
<color name="snow_translucent">#80FBFAFA</color>
</resources>
<!-- Jetpack Compose -->
val Snow = Color(0xFFFBFAFA)JavaScript
export const SNOW = {
hex: "#fbfafa",
rgb: [251, 250, 250],
hsl: [0, 11, 98],
oklch: "oklch(98.59% 0.0011 17.18)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"snow": {
"$type": "color",
"$value": "#fbfafa",
"$description": "Snow — generated by ColorVerse AI"
}
}