White Smoke
HEX: #F5F5F5 | Modern Palette
Color Specifications
#F5F5F5
245, 245, 245
0°, 0% ,96%
0, 0, 0, 4
About White Smoke
White Smoke (#F5F5F5) is a color with RGB(245, 245, 245) and HSL(0°, 0%, 96.1%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Print. Its complementary color is White Smoke (#F5F5F5), which creates strong contrast. Its triadic palette includes White Smoke (#F5F5F5) and White Smoke (#F5F5F5). The name comes from White Smoke (English).
- HEX: #F5F5F5
- RGB: 245, 245, 245
- HSL: 0°, 0%, 96.1%
- Mood: Minimal
- Style: Monochrome, Pastel
- Use case: Text, Background, Print
- Complementary color: White Smoke (#F5F5F5)
- Triadic colors: White Smoke (#F5F5F5), White Smoke (#F5F5F5)
- The name comes from White Smoke (English).
Live Components
Color Palettes
White Smoke #F5F5F5 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
White Smoke #F5F5F5 pairs with White Smoke (#F5F5F5) as its complementary color, and White Smoke (#F5F5F5) and White Smoke (#F5F5F5) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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.
Shades & Tints
The shade and tint range for White Smoke #F5F5F5 moves from dark #0D0D0D tones through the base color to lighter #F2F2F2 tones, making it useful for depth, hierarchy, and background variation.
Color Characteristics
Accessibility Simulation
#F5F5F5
#F5F5F5
#F5F5F5
#F5F5F5
Frequently Asked Questions
Name, History & Etymology
History
The tradition of using smoke to signal the outcome of a papal election dates back centuries. Black smoke indicates that a pope has not yet been chosen, while white smoke signifies that a new pope has been elected. This practice became particularly prominent and widely reported in the modern era, leading to the phrase 'white smoke' entering common parlance as a metaphor for any definitive positive outcome or announcement after a period of deliberation or uncertainty.
First Recorded Use
The phrase gained widespread recognition and use following the practice of the Catholic Church during papal conclaves.
Cultural Associations
Beyond its literal meaning in the Vatican, 'white smoke' is now a widely understood idiom in Western cultures. It is frequently used in business, politics, and everyday conversation to announce that a long-awaited decision has been made, a deal has been struck, or a solution has been found. It carries connotations of finality, success, and the end of suspense.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #F5F5F5;
}
/* Text */
.element {
color: #F5F5F5;
}
/* Border */
.element {
border: 1px solid #F5F5F5;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F5F5F5,
#F5F5F5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F5F5F5,
#F5F5F5
);
}
// SCSS variable
$white-smoke: #F5F5F5;
// With RGB channels (useful for rgba() usage)
$white-smoke-r: 245;
$white-smoke-g: 245;
$white-smoke-b: 245;
// Usage
.element {
background-color: $white-smoke;
color: rgba($white-smoke-r, $white-smoke-g, $white-smoke-b, 0.8);
}