Gray
HEX: #808080 | Modern Palette
Color Specifications
#808080
128, 128, 128
0°, 0% ,50%
0, 0, 0, 49.8
About Gray
Gray (#808080) is a color with RGB(128, 128, 128) and HSL(0°, 0%, 50.2%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Muted styles and is suitable for Text, Background, Border. Its complementary color is Gray (#808080), which creates strong contrast. Its triadic palette includes Gray (#808080) and Gray (#808080). The name comes from *grēwaz (Proto-Germanic).
- HEX: #808080
- RGB: 128, 128, 128
- HSL: 0°, 0%, 50.2%
- Mood: Minimal
- Style: Monochrome, Muted
- Use case: Text, Background, Border
- Complementary color: Gray (#808080)
- Triadic colors: Gray (#808080), Gray (#808080)
- The name comes from *grēwaz (Proto-Germanic).
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 #808080 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#808080
#808080
#808080
#808080
Frequently Asked Questions
Name, History & Etymology
History
The word 'gray' has deep roots in Germanic languages. It evolved from the Proto-Germanic '*grēwaz', which also gave rise to similar words in Old High German ('grāo'), Old Norse ('grár'), and Dutch ('grauw'). In Old English, it appeared as 'grǣġ'. The meaning has consistently referred to the achromatic color between black and white, often associated with old age, dullness, or neutrality. Its spelling has remained relatively stable in English, with 'gray' being the predominant American spelling and 'grey' being more common in British English, though both are widely understood.
First Recorded Use
Before 12th Century
Cultural Associations
Gray is often associated with maturity, wisdom, and dignity due to its connection with the graying of hair in older individuals. It can also symbolize neutrality, compromise, and balance, as it sits between two extremes (black and white). In some contexts, gray can evoke feelings of melancholy, dullness, or industrialism. It is a common color in professional attire, suggesting sophistication and conservatism. In art and photography, gray tones are crucial for creating depth, mood, and realism.
Code Snippets
/* Background */
.element {
background-color: #808080;
}
/* Text */
.element {
color: #808080;
}
/* Border */
.element {
border: 1px solid #808080;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#808080,
#808080
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#808080,
#808080
);
}
// SCSS variable
$gray: #808080;
// With RGB channels (useful for rgba() usage)
$gray-r: 128;
$gray-g: 128;
$gray-b: 128;
// Usage
.element {
background-color: $gray;
color: rgba($gray-r, $gray-g, $gray-b, 0.8);
}