#E9EFEA White Smoke
rgb(233, 239, 234)
Color conversions
- HEX
- #E9EFEA
- RGB
- rgb(233, 239, 234)
- RGBA
- rgba(233, 239, 234, 1)
- HSL
- hsl(130, 16%, 93%)
- HSV / HSB
- hsv(130, 3%, 94%)
- CMYK
- cmyk(3%, 0%, 2%, 6%)
Wide-gamut spaces
- XYZ
- xyz(79.319, 84.997, 90.053)
- LAB
- lab(93.88 -2.89 1.72)
- LCH
- lch(93.88 3.36 149.24)
- OKLAB
- oklab(94.62% -0.008 0.0045)
- OKLCH
- oklch(94.62% 0.0092 150.69)
- 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
#e9efea1a
#e9efea33
#e9efea4d
#e9efea66
#e9efea80
#e9efea99
#e9efeab3
#e9efeacc
#e9efeae6
#e9efeaff
Accessibility and contrast
On white
1.17:1
Body text Fail · Large text Fail
On black
18:1
Body text AAA · Large text AA
White-on-color contrast is 1.17: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
Growth, permission, and the language of success states
Green is the hue the eye resolves with the least effort, which makes it genuinely restful across large surfaces. It carries built-in permission semantics — confirm, proceed, healthy — so using it decoratively can create false affordances in an interface.
Nature, renewal, and wealth in Western markets, and paradise and faith across much of the Islamic world. It also carries strong finance connotations thanks to US currency.
Stable green pigments were historically difficult and often poisonous — Scheele's green was arsenic-based and killed the people who lived with its wallpaper. Viridian in the nineteenth century finally gave artists a safe, permanent green.
The default for sustainability, health, and finance. If your product also uses green for success feedback, shift the brand green's hue or chroma so the two never get confused.
Common industries: Sustainability, Healthcare, Finance, Food, Outdoor. Pairs well with warm cream for organic warmth, deep brown for heritage, coral for a modern accent.
Code exports
CSS
:root {
--color-white-smoke: #e9efea;
--color-white-smoke-rgb: 233 239 234;
--color-white-smoke-hsl: 130 16% 93%;
--color-white-smoke-oklch: 94.62% 0.0092 150.69;
}
.element {
color: #e9efea;
background-color: hsl(130, 16%, 93%);
border: 1px solid rgb(233 239 234 / 40%);
}SCSS
$white-smoke: #e9efea;
$white-smoke-light: #f4f7f5;
$white-smoke-dark: #757875;
.element {
color: $white-smoke;
background: rgba($white-smoke, 0.12);
&:hover {
color: darken($white-smoke, 8%);
}
}LESS
@white-smoke: #e9efea;
@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: #fbfcfb;
--color-white-smoke-100: #f8faf9;
--color-white-smoke-200: #f6f9f7;
--color-white-smoke-300: #f2f5f2;
--color-white-smoke-400: #edf2ee;
--color-white-smoke-500: #e9efea;
--color-white-smoke-600: #d2d7d3;
--color-white-smoke-700: #a3a7a4;
--color-white-smoke-800: #757875;
--color-white-smoke-900: #464846;
}
/* Usage */
<div class="bg-white-smoke-500 text-white-smoke-50 ring-white-smoke-600" />
/* Arbitrary value, no config needed */
<div class="bg-[#e9efea]" />Bootstrap
// Bootstrap 5 — _variables.scss (before importing bootstrap)
$white-smoke: #e9efea;
$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(0xFFE9EFEA);
// As a MaterialColor swatch
const MaterialColor whiteSmokeSwatch = MaterialColor(0xFFE9EFEA, <int, Color>{
50: Color(0xFFFBFCFB),
100: Color(0xFFF8FAF9),
200: Color(0xFFF6F9F7),
300: Color(0xFFF2F5F2),
400: Color(0xFFEDF2EE),
500: Color(0xFFE9EFEA),
600: Color(0xFFD2D7D3),
700: Color(0xFFA3A7A4),
800: Color(0xFF757875),
900: Color(0xFF464846),
});Swift / SwiftUI
import SwiftUI
extension Color {
/// #e9efea — White Smoke
static let whiteSmoke = Color(
red: 0.9137,
green: 0.9373,
blue: 0.9176
)
}
// UIKit
extension UIColor {
static let whiteSmoke = UIColor(
red: 0.9137,
green: 0.9373,
blue: 0.9176,
alpha: 1.0
)
}Android
<!-- res/values/colors.xml -->
<resources>
<color name="white_smoke">#E9EFEA</color>
<color name="white_smoke_translucent">#80E9EFEA</color>
</resources>
<!-- Jetpack Compose -->
val WhiteSmoke = Color(0xFFE9EFEA)JavaScript
export const WHITE_SMOKE = {
hex: "#e9efea",
rgb: [233, 239, 234],
hsl: [130, 16, 93],
oklch: "oklch(94.62% 0.0092 150.69)",
};JSON tokens
{
"$schema": "https://design-tokens.org/schema.json",
"white-smoke": {
"$type": "color",
"$value": "#e9efea",
"$description": "White Smoke — generated by ColorVerse AI"
}
}