Light Slate Gray

HEX: #778899 | Modern Palette

On White
3.64:1
FAIL
On Black
5.77:1
PASS

Color Specifications

HEX
#778899
RGB
119, 136, 153
HSL
210°, 22% ,60%
CMYK
22.22, 11.11, 0, 40

About Light Slate Gray

Light Slate Gray (#778899) is a color with RGB(119, 136, 153) and HSL(210°, 22.22%, 60%). It is commonly associated with Calm moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #998877, which creates strong contrast. Its triadic palette includes #997788 and #889977.

  • HEX: #778899
  • RGB: 119, 136, 153
  • HSL: 210°, 22.22%, 60%
  • Mood: Calm
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #998877
  • Triadic colors: #997788, #889977

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

Color Characteristics

Mood
Calm
Style
Muted Cool

Accessibility Simulation

Deuteranopia #838399
Protanopia #868699
Tritanopia #748A8A
Achromatopsia #868686

Frequently Asked Questions

Light Slate Gray (#778899) is a color with RGB(119, 136, 153) and HSL(210°, 22.22%, 60%).

#778899 pairs strongly with #998877 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#778899 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#778899 is commonly associated with Calm.

Similar Named Colors

Slate Gray #708090 ΔE 2.97
Shadow Blue #778BA5 ΔE 3.61
Roman Silver #838996 ΔE 4.45
Air Force Blue (RAF) #5D8AA8 ΔE 6.92

Code Snippets

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

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

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

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

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

// SCSS variable
$light-slate-gray: #778899;

// With RGB channels (useful for rgba() usage)
$light-slate-gray-r: 119;
$light-slate-gray-g: 136;
$light-slate-gray-b: 153;

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