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
Dark Gray #A9A9A9 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Gray #A9A9A9 pairs with Dark Gray (#A9A9A9) as its complementary color, and Dark Gray (#A9A9A9) and Dark Gray (#A9A9A9) in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
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);
}