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
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 #F5F5F5 from deepest shade to lightest tint.
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);
}