Blue Gray

HEX: #6699CC | Modern Palette

On White
3.00:1
FAIL
On Black
6.99:1
PASS

Color Specifications

HEX
#6699CC
RGB
102, 153, 204
HSL
210°, 50% ,80%
CMYK
50, 25, 0, 20

About Blue Gray

Blue Gray (#6699CC) is a color with RGB(102, 153, 204) and HSL(210°, 50%, 80%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is Brown Yellow (#CC9966), which creates strong contrast. Its triadic palette includes #CC6699 and #99CC66. The name comes from Blue Gray (English).

  • HEX: #6699CC
  • RGB: 102, 153, 204
  • HSL: 210°, 50%, 80%
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: Brown Yellow (#CC9966)
  • Triadic colors: #CC6699, #99CC66
  • The name comes from Blue 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 #6699CC from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #8D8DCD
Protanopia #9494CC
Tritanopia #57A1A1
Achromatopsia #959595

Frequently Asked Questions

Blue Gray (#6699CC) is a color with RGB(102, 153, 204) and HSL(210°, 50%, 80%).

#6699CC pairs strongly with Brown Yellow (#CC9966) as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#6699CC is suitable for Text, Button, Background and works well with Cool styles.

The name Blue Gray is linked to Blue Gray from English, meaning A color that is an intermediate shade between blue and gray..

Name, History & Etymology

Origin Word Blue Gray
Meaning A color that is an intermediate shade between blue and gray.
Language English
First Recorded Use Late 17th - Early 18th Century

History

The concept of 'blue-gray' as a distinct color has been present in human perception for millennia, observed in natural elements like stormy skies, certain minerals (e.g., slate, some types of granite), and animal fur/feathers. As a named color, its usage became more formalized with the development of color systems and the increasing precision of language. In art, it's a fundamental shade for depicting skies, water, and shadows. In fashion and interior design, it gained significant popularity in the 20th and 21st centuries for its versatility and calming effect, often associated with sophistication and modernity. The specific hex code #6699cc is a modern digital representation of one particular shade within the broader 'blue-gray' spectrum.

First Recorded Use

The specific compound 'blue-gray' as a color descriptor likely emerged as English color vocabulary became more nuanced, allowing for the combination of primary and secondary color terms with modifiers like 'gray' to describe intermediate hues. While 'blue' and 'gray' have ancient origins, their combination to precisely describe this specific shade became more common in written records from the late 17th century onwards, particularly in descriptions of natural phenomena, textiles, and art.

Cultural Associations

Blue-gray often evokes feelings of calmness, serenity, and stability. It can also be associated with melancholy or introspection, particularly in its darker variations. In many cultures, blue is linked to the sky and sea, symbolizing peace, wisdom, and truth, while gray often represents neutrality, sophistication, or sometimes somberness. The combination creates a balanced color that is neither overtly warm nor cool, making it highly adaptable. It's frequently used in professional settings to convey trustworthiness and competence, and in homes to create a tranquil atmosphere. It's a common color for uniforms, particularly in naval contexts, due to its association with water and its practical ability to hide dirt.

Similar Named Colors

Cerulean Frost #6D9BC3 ΔE 2.10
Little Boy Blue #6CA0DC ΔE 2.75
Dark Pastel Blue #779ECB ΔE 3.00
United Nations Blue #5B92E5 ΔE 3.73

Code Snippets

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

/* Text */
.element {
    color: #6699CC;
}

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

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

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

// SCSS variable
$blue-gray: #6699CC;

// With RGB channels (useful for rgba() usage)
$blue-gray-r: 102;
$blue-gray-g: 153;
$blue-gray-b: 204;

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