#F2F3F2 White Smoke
rgb(242, 243, 242)
Color conversions
- HEX
- #F2F3F2
- RGB
- rgb(242, 243, 242)
- RGBA
- rgba(242, 243, 242, 1)
- HSL
- hsl(120, 4%, 95%)
- HSV / HSB
- hsv(120, 0%, 95%)
- CMYK
- cmyk(0%, 0%, 0%, 5%)
Wide-gamut spaces
- XYZ
- xyz(84.693, 89.389, 96.779)
- LAB
- lab(95.74 -0.51 0.36)
- LCH
- lch(95.74 0.63 144.42)
- OKLAB
- oklab(96.31% -0.0014 0.001)
- OKLCH
- oklch(96.31% 0.0017 145.56)
- Nearest name
- White Smoke
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
#f2f3f21a
#f2f3f233
#f2f3f24d
#f2f3f266
#f2f3f280
#f2f3f299
#f2f3f2b3
#f2f3f2cc
#f2f3f2e6
#f2f3f2ff
Accessibility and contrast
On white
1.11:1
Body text Fail · Large text Fail
On black
18.88:1
Body text AAA · Large text AA
White-on-color contrast is 1.11: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-white-smoke: #f2f3f2;
--color-white-smoke-rgb: 242 243 242;
--color-white-smoke-hsl: 120 4% 95%;
--color-white-smoke-oklch: 96.31% 0.0017 145.56;
}
.element {
color: #f2f3f2;
background-color: hsl(120, 4%, 95%);
border: 1px solid rgb(242 243 242 / 40%);
}SCSS
$white-smoke: #f2f3f2;
$white-smoke-light: #f9f9f9;
$white-smoke-dark: #797a79;
.element {
color: $white-smoke;
background: rgba($white-smoke, 0.12);
&:hover {
color: darken($white-smoke, 8%);
}
}LESS
@white-smoke: #f2f3f2;
@white-smoke-light: lighten(@white-smoke, 12%);
@white-smoke-dark: darken(@white-smoke, 12%);
.element {
color: @white-smoke;
background: fade(@white-smoke, 12%);
}Tailwind CSS
/* Tailwind v4 — src/styles.css */
@theme {
--color-white-smoke-50: #fcfdfc;
--color-white-smoke-100: #fbfbfb;
--color-white-smoke-200: #fafafa;
--color-white-smoke-300: #f7f8f7;
--color-white-smoke-400: #f5f5f5;
--color-white-smoke-500: #f2f3f2;
--color-white-smoke-600: #dadbda;
--color-white-smoke-700: #a9aaa9;
--color-white-smoke-800: #797a79;
--color-white-smoke-900: #494949;
}
/* Usage */
<div class="bg-white-smoke-500 text-white-smoke-50 ring-white-smoke-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#f2f3f2]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$white-smoke: #f2f3f2;
$primary: $white-smoke;
$theme-colors: map-merge($theme-colors, (
"white-smoke": $white-smoke
));
// Generates .text-white-smoke, .bg-white-smoke, .btn-white-smoke
@import "bootstrap/scss/bootstrap";Flutter
import 'package:flutter/material.dart';
const Color whiteSmoke = Color(0xFFF2F3F2);
// As a MaterialColor swatch
const MaterialColor whiteSmokeSwatch = MaterialColor(0xFFF2F3F2, <int, Color>{
50: Color(0xFFFCFDFC),
100: Color(0xFFFBFBFB),
200: Color(0xFFFAFAFA),
300: Color(0xFFF7F8F7),
400: Color(0xFFF5F5F5),
500: Color(0xFFF2F3F2),
600: Color(0xFFDADBDA),
700: Color(0xFFA9AAA9),
800: Color(0xFF797A79),
900: Color(0xFF494949),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #f2f3f2 — White Smoke
static let whiteSmoke = Color(
red: 0.949,
green: 0.9529,
blue: 0.949
)
}
// UIKit
extension UIColor {
static let whiteSmoke = UIColor(
red: 0.949,
green: 0.9529,
blue: 0.949,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="white_smoke">#F2F3F2</color>
<color name="white_smoke_translucent">#80F2F3F2</color>
</resources>
<!-- Jetpack Compose -->
val WhiteSmoke = Color(0xFFF2F3F2)JavaScript
export const WHITE_SMOKE = {
hex: "#f2f3f2",
rgb: [242, 243, 242],
hsl: [120, 4, 95],
oklch: "oklch(96.31% 0.0017 145.56)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"white-smoke": {
"$type": "color",
"$value": "#f2f3f2",
"$description": "White Smoke — generated by ColorVerse AI"
}
}