Dim Gray
HEX: #696969 | Modern Palette
Color Specifications
#696969
105, 105, 105
0°, 0% ,41%
0, 0, 0, 58.82
About Dim Gray
Dim Gray (#696969) is a color with RGB(105, 105, 105) and HSL(0°, 0%, 41.18%). 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 Dim Gray (#696969), which creates strong contrast. Its triadic palette includes Dim Gray (#696969) and Dim Gray (#696969). The name comes from Dim Gray (English).
- HEX: #696969
- RGB: 105, 105, 105
- HSL: 0°, 0%, 41.18%
- Mood: Minimal
- Style: Monochrome, Muted
- Use case: Text, Background, Border
- Complementary color: Dim Gray (#696969)
- Triadic colors: Dim Gray (#696969), Dim Gray (#696969)
- The name comes from Dim 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 #696969 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#696969
#696969
#696969
#696969
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'dim' (lacking brightness) and 'gray' (an achromatic color between black and white) are ancient. The combination 'Dim Gray' specifically describes a particular nuance of gray. Its prominence increased significantly with the advent of digital color systems. In the X11 color naming scheme, 'Dim Gray' was defined with the hexadecimal value #696969, making it a standard color in many computing environments. This standardization helped popularize the specific name and its associated hue.
First Recorded Use
While 'dim' and 'gray' have existed for centuries, the specific compound 'Dim Gray' as a recognized color name, particularly in technical or standardized contexts, likely emerged with the need for more precise color descriptions in industries like paint, textiles, and later, computing. Its inclusion in X11 color names (early 1990s) solidified its status.
Cultural Associations
In general, gray colors are often associated with neutrality, sophistication, modesty, and sometimes melancholy or industrial themes. 'Dim Gray' specifically, being a darker, muted gray, might evoke feelings of seriousness, professionalism, or a subdued elegance. It's a common background or secondary color in design due to its unobtrusive nature.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #696969;
}
/* Text */
.element {
color: #696969;
}
/* Border */
.element {
border: 1px solid #696969;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#696969,
#696969
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#696969,
#696969
);
}
// SCSS variable
$dim-gray: #696969;
// With RGB channels (useful for rgba() usage)
$dim-gray-r: 105;
$dim-gray-g: 105;
$dim-gray-b: 105;
// Usage
.element {
background-color: $dim-gray;
color: rgba($dim-gray-r, $dim-gray-g, $dim-gray-b, 0.8);
}