Light Slate Gray
HEX: #778899 | Modern Palette
Color Specifications
#778899
119, 136, 153
210°, 22% ,60%
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
Color Palettes
Light Slate Gray #778899 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
Light Slate Gray #778899 pairs with #998877 as its complementary color, and #997788 and #889977 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
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);
}