Cool Grey
HEX: #8C92AC | Modern Palette
Color Specifications
#8C92AC
140, 146, 172
228°, 18% ,67%
18.6, 15.12, 0, 32.55
About Cool Grey
Cool Grey (#8C92AC) is a color with RGB(140, 146, 172) and HSL(228.75°, 18.6%, 67.45%). 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 #ACA68C, which creates strong contrast. Its triadic palette includes #AC8C92 and #92AC8C. The name comes from Cool Grey (English).
- HEX: #8C92AC
- RGB: 140, 146, 172
- HSL: 228.75°, 18.6%, 67.45%
- Mood: Calm
- Style: Muted, Cool
- Use case: Text, Background, Border
- Complementary color: #ACA68C
- Triadic colors: #AC8C92, #92AC8C
- The name comes from Cool Grey (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 #8C92AC from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'cool' and 'warm' colors has roots in art theory, dating back centuries. However, the precise naming and popularization of 'Cool Grey' as a distinct and marketable color name is a more modern phenomenon. Its rise is closely tied to minimalist design trends, the increasing sophistication of color naming in consumer products, and its prominent use in popular culture, especially in athletic footwear. The hexadecimal code #8c92ac specifically represents a medium-light cool grey.
First Recorded Use
The specific term 'Cool Grey' gained significant traction in design, fashion, and particularly in the sneaker industry (most notably with Nike's 'Cool Grey' colorway) starting in the 1990s and early 2000s. While 'cool' and 'grey' have existed for centuries, their combination as a standardized color name is more recent.
Cultural Associations
In popular culture, 'Cool Grey' is strongly associated with sophistication, modernity, and a certain understated elegance. It's a versatile neutral that can be both calming and stylish. Its most famous cultural association is arguably with Nike's Air Jordan line, where 'Cool Grey' colorways are highly sought after and iconic. It also frequently appears in interior design, fashion, and automotive design for its ability to convey a sleek, contemporary aesthetic.
Code Snippets
/* Background */
.element {
background-color: #8C92AC;
}
/* Text */
.element {
color: #8C92AC;
}
/* Border */
.element {
border: 1px solid #8C92AC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8C92AC,
#BBB69D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8C92AC,
#BBB69D
);
}
// SCSS variable
$cool-grey: #8C92AC;
// With RGB channels (useful for rgba() usage)
$cool-grey-r: 140;
$cool-grey-g: 146;
$cool-grey-b: 172;
// Usage
.element {
background-color: $cool-grey;
color: rgba($cool-grey-r, $cool-grey-g, $cool-grey-b, 0.8);
}