Dark Gray
HEX: #A9A9A9 | Modern Palette
Color Specifications
#A9A9A9
169, 169, 169
0°, 0% ,66%
0, 0, 0, 34
About Dark Gray
Dark Gray (#A9A9A9) is a color with RGB(169, 169, 169) and HSL(0°, 0%, 66.3%). 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 Dark Gray (#A9A9A9), which creates strong contrast. Its triadic palette includes Dark Gray (#A9A9A9) and Dark Gray (#A9A9A9). The name comes from Dark Gray (English).
- HEX: #A9A9A9
- RGB: 169, 169, 169
- HSL: 0°, 0%, 66.3%
- Mood: Minimal
- Style: Monochrome, Muted
- Use case: Text, Background, Border
- Complementary color: Dark Gray (#A9A9A9)
- Triadic colors: Dark Gray (#A9A9A9), Dark Gray (#A9A9A9)
- The name comes from Dark Gray (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 #A9A9A9 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A9A9A9
#A9A9A9
#A9A9A9
#A9A9A9
Frequently Asked Questions
Name, History & Etymology
History
The word 'gray' itself comes from Old English 'græg' and has Germanic roots. 'Dark' also has Old English origins ('deorc'). The combination 'dark gray' is a straightforward descriptive term. Its usage has been consistent across various fields, from art and fashion to engineering and computing. The specific hex code #a9a9a9 is one of many representations of 'dark gray' within digital color systems, standardized by web color specifications.
First Recorded Use
While 'dark' and 'gray' have existed for centuries, the specific compound 'dark gray' as a common and distinct color descriptor likely solidified in usage as color terminology became more precise, particularly with the advent of standardized color charts and industrial dyeing processes. Early references to 'dark grey' or 'dark gray' can be found in literature and descriptive texts from the late 17th and early 18th centuries, often describing natural elements like clouds, stones, or animal fur.
Cultural Associations
Dark gray is often associated with sophistication, formality, and seriousness. It can also evoke feelings of melancholy, modesty, or neutrality. In fashion, it's a staple for business attire and classic garments. In design, it's frequently used as a background or accent color for its versatility and ability to make other colors stand out. It's less stark than black but more authoritative than light gray. It's a common color in urban landscapes (concrete, asphalt) and natural elements (rocks, stormy skies).
Code Snippets
/* Background */
.element {
background-color: #A9A9A9;
}
/* Text */
.element {
color: #A9A9A9;
}
/* Border */
.element {
border: 1px solid #A9A9A9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A9A9A9,
#A9A9A9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A9A9A9,
#A9A9A9
);
}
// SCSS variable
$dark-gray: #A9A9A9;
// With RGB channels (useful for rgba() usage)
$dark-gray-r: 169;
$dark-gray-g: 169;
$dark-gray-b: 169;
// Usage
.element {
background-color: $dark-gray;
color: rgba($dark-gray-r, $dark-gray-g, $dark-gray-b, 0.8);
}