Light Gray

HEX: #D3D3D3 | Modern Palette

On White
1.50:1
FAIL
On Black
14.03:1
PASS

Color Specifications

HEX
#D3D3D3
RGB
211, 211, 211
HSL
0°, 0% ,82%
CMYK
0, 0, 0, 17

About Light Gray

Light Gray (#D3D3D3) is a color with RGB(211, 211, 211) and HSL(0°, 0%, 82.7%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Pastel styles and is suitable for Text, Background, Print. Its complementary color is Light Gray (#D3D3D3), which creates strong contrast. Its triadic palette includes Light Gray (#D3D3D3) and Light Gray (#D3D3D3). The name comes from Light Gray (English).

  • HEX: #D3D3D3
  • RGB: 211, 211, 211
  • HSL: 0°, 0%, 82.7%
  • Mood: Minimal
  • Style: Monochrome, Pastel
  • Use case: Text, Background, Print
  • Complementary color: Light Gray (#D3D3D3)
  • Triadic colors: Light Gray (#D3D3D3), Light Gray (#D3D3D3)
  • The name comes from Light Gray (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #D3D3D3 from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #D3D3D3
Protanopia #D3D3D3
Tritanopia #D3D3D3
Achromatopsia #D3D3D3

Frequently Asked Questions

Light Gray (#D3D3D3) is a color with RGB(211, 211, 211) and HSL(0°, 0%, 82.7%).

#D3D3D3 pairs strongly with Light Gray (#D3D3D3) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#D3D3D3 is suitable for Text, Background, Print and works well with Monochrome, Pastel styles.

#D3D3D3 is commonly associated with Minimal.

The name Light Gray is linked to Light Gray from English, meaning A pale shade of the color gray..

Name, History & Etymology

Origin Word Light Gray
Meaning A pale shade of the color gray.
Language English
First Recorded Use Late 19th - Early 20th Century (as a common descriptive term for color)

History

The concept of 'gray' as an intermediate color between black and white is ancient. 'Light' as a modifier to indicate a paler shade is also very old. The combination 'light gray' is a straightforward descriptive term. Its formal recognition and widespread use as a distinct color name, rather than just a description, increased with the need for more specific color identification in various industries. For instance, in printing, textiles, and paint, distinguishing between different shades of gray became crucial. The hexadecimal code #d3d3d3 specifically represents a particular shade of light gray in digital contexts, standardized with the advent of web colors.

First Recorded Use

While 'light' and 'gray' have existed for centuries, the specific compound 'light gray' as a standardized color name or common descriptor likely gained prominence with the rise of industrial color standardization, paint manufacturing, and fashion industries requiring more precise color communication. Its use in early color charts and fashion magazines would solidify its common usage.

Cultural Associations

Light gray is often associated with neutrality, sophistication, minimalism, and modernity. In fashion, it's considered versatile and timeless. In interior design, it can create a calming and spacious feel. It's also frequently used in corporate branding to convey professionalism and stability. Due to its lack of strong emotional connotations, it's often seen as practical and understated. It can also be associated with technology and industrial design.

Similar Named Colors

Gainsboro #DCDCDC ΔE 2.08
Timberwolf #DBD7D2 ΔE 3.03
Platinum #E5E4E2 ΔE 4.03
Silver Sand #BFC1C2 ΔE 4.64

Code Snippets

/* Background */
.element {
    background-color: #D3D3D3;
}

/* Text */
.element {
    color: #D3D3D3;
}

/* Border */
.element {
    border: 1px solid #D3D3D3;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #D3D3D3,
        #D3D3D3
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D3D3D3,
        #D3D3D3
    );
}

// SCSS variable
$light-gray: #D3D3D3;

// With RGB channels (useful for rgba() usage)
$light-gray-r: 211;
$light-gray-g: 211;
$light-gray-b: 211;

// Usage
.element {
    background-color: $light-gray;
    color: rgba($light-gray-r, $light-gray-g, $light-gray-b, 0.8);
}