Beige
HEX: #F5F5DC | Modern Palette
Color Specifications
#F5F5DC
245, 245, 220
60°, 55% ,91%
0, 0, 10, 4
About Beige
Beige (#F5F5DC) is a color with RGB(245, 245, 220) and HSL(60°, 55.6%, 91.2%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #DCDCF5, which creates strong contrast. Its triadic palette includes #DCF5F5 and #F5DCF5. The name comes from beige (French).
- HEX: #F5F5DC
- RGB: 245, 245, 220
- HSL: 60°, 55.6%, 91.2%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #DCDCF5
- Triadic colors: #DCF5F5, #F5DCF5
- The name comes from beige (French).
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 #F5F5DC from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#F5F5DC
#F5F5DC
#F8F2F2
#F3F3F3
Frequently Asked Questions
Name, History & Etymology
History
The term 'beige' originally referred to the natural color of wool that had not been dyed or processed. It was adopted into English from French in the mid-19th century, particularly gaining traction in fashion and interior design. Its popularity surged as a neutral and sophisticated color choice. Over time, the definition expanded to include a range of pale, yellowish-brown or grayish-brown shades. It became a staple in minimalist aesthetics and classic design.
First Recorded Use
The word 'beige' was first used in French to describe the natural color of undyed, unbleached wool. It gained popularity as a color name in English around the mid-19th century.
Cultural Associations
Beige is widely perceived as a neutral, calming, and sophisticated color. In Western cultures, it is often associated with elegance, simplicity, and understated luxury. It is a popular choice for professional attire, home decor, and fashion due to its versatility and ability to complement other colors. However, it can also sometimes be associated with being 'boring' or 'unadventurous' by some, though its classic appeal generally outweighs this perception. In some contexts, it can evoke a sense of warmth and earthiness.
Code Snippets
/* Background */
.element {
background-color: #F5F5DC;
}
/* Text */
.element {
color: #F5F5DC;
}
/* Border */
.element {
border: 1px solid #F5F5DC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F5F5DC,
#DCDCF5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F5F5DC,
#DCDCF5
);
}
// SCSS variable
$beige: #F5F5DC;
// With RGB channels (useful for rgba() usage)
$beige-r: 245;
$beige-g: 245;
$beige-b: 220;
// Usage
.element {
background-color: $beige;
color: rgba($beige-r, $beige-g, $beige-b, 0.8);
}