Buff
HEX: #F0DC82 | Modern Palette
Color Specifications
#F0DC82
240, 220, 130
49°, 78% ,72%
0, 8, 46, 6
About Buff
Buff (#F0DC82) is a color with RGB(240, 220, 130) and HSL(49.1°, 78.6%, 72.5%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #8296F0, which creates strong contrast. Its triadic palette includes #82F0DC and #DC82F0. The name comes from Buff (English).
- HEX: #F0DC82
- RGB: 240, 220, 130
- HSL: 49.1°, 78.6%, 72.5%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #8296F0
- Triadic colors: #82F0DC, #DC82F0
- The name comes from Buff (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 #F0DC82 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'buff' as a color name derives from 'buffalo', specifically referring to the color of undyed buffalo hide. This hide was known for its pale, yellowish-tan hue. The term gained wider recognition in the late 17th century. Over time, 'buff' also came to describe a type of soft, durable leather, often made from buffalo or ox hide, used for polishing or as a protective layer. The color 'buff' itself has been used in various contexts, including military uniforms (e.g., the 'Buffs' regiment), fashion, and interior design. Its association with strength and durability, stemming from the hide, may have subtly influenced its later use in describing a well-built physique.
First Recorded Use
1686
Cultural Associations
The color 'buff' is often associated with natural, earthy tones. In some contexts, it can evoke a sense of tradition or understated elegance. Historically, it was a common color for uniforms and workwear due to its practicality and ability to hide dirt. The phrase 'in the buff' (meaning naked) is also related, referring to the color of bare skin, though its etymology is debated, some linking it directly to the color of hide or the 'buff' leather used for polishing, implying a smooth, unadorned state.
Code Snippets
/* Background */
.element {
background-color: #F0DC82;
}
/* Text */
.element {
color: #F0DC82;
}
/* Border */
.element {
border: 1px solid #F0DC82;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F0DC82,
#8296F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F0DC82,
#8296F0
);
}
// SCSS variable
$buff: #F0DC82;
// With RGB channels (useful for rgba() usage)
$buff-r: 240;
$buff-g: 220;
$buff-b: 130;
// Usage
.element {
background-color: $buff;
color: rgba($buff-r, $buff-g, $buff-b, 0.8);
}