Cool Grey

HEX: #8C92AC | Modern Palette

On White
3.08:1
FAIL
On Black
6.82:1
PASS

Color Specifications

HEX
#8C92AC
RGB
140, 146, 172
HSL
228°, 18% ,67%
CMYK
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

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

Color Characteristics

Mood
Calm
Style
Muted Cool

Accessibility Simulation

Deuteranopia #9090AC
Protanopia #9191AC
Tritanopia #889696
Achromatopsia #939393

Frequently Asked Questions

Cool Grey (#8C92AC) is a color with RGB(140, 146, 172) and HSL(228.75°, 18.6%, 67.45%).

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

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

#8C92AC is commonly associated with Calm.

The name Cool Grey is linked to Cool Grey from English, meaning A shade of grey that incorporates blue undertones, giving it a 'cooler' visual temperature compared to 'warm greys' which might have yellow or red undertones..

Name, History & Etymology

Origin Word Cool Grey
Meaning A shade of grey that incorporates blue undertones, giving it a 'cooler' visual temperature compared to 'warm greys' which might have yellow or red undertones.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Manatee #979AAA ΔE 4.59
Roman Silver #838996 ΔE 6.38
Shadow Blue #778BA5 ΔE 6.72
Ceil #92A1CF ΔE 7.69

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);
}