Blue Gray Color Codes
Blue Gray is a mid-tone, muted azure blue with the hex code #6699CC, RGB values of 102, 153, 204 and an HSL value of hsl(210, 50%, 60%).
| HEX | #6699CC |
|---|---|
| RGB | 102, 153, 204 |
| HSL | hsl(210, 50%, 60%) |
| HSV | 210°, 50%, 80% |
| CMYK | 50%, 25%, 0%, 20% |
| LAB | 61.62, -2.82, -31.43 |
| CIELCHuv | 61.62, 54.21, 243.73° |
- Nearest Pantone
- PMS 542 C ΔE 6.0 · approximate
- Nearest CSS name
-
steelblueΔE 9.3
Source Wikipedia, List of colors (cites Crayola)
Blue Gray Color Hex Code
The Blue Gray color hex code is #6699CC. Those six digits are three pairs, 66 for red, 99 for green and CC for blue, which is the same triplet a browser reads from the CSS value below.
#6699CC
Blue Gray Color RGB Code
The Blue Gray RGB code is rgb(102, 153, 204). Blue carries the most light at 204 of 255, which is what puts this color where it sits on the wheel.
rgb(102, 153, 204)
Blue Gray Color HSV Code
The Blue Gray HSV code is 210°, 50%, 80%. Read it as a hue of 210 degrees, 50% saturation and 80% value, which is the form most color pickers use because moving one number changes one thing.
210°, 50%, 80%
Blue Gray Color CIELChuv Code
The Blue Gray CIELCHuv code is 61.62, 54.21, 243.73°. Unlike hex or RGB this one is perceptual: lightness 62 means mid-toned to the eye rather than to the screen, and chroma 54 is how far it sits from grey.
61.62, 54.21, 243.73°
Tonal scale
What are Blue Gray Color Palettes?
A shade mixes toward black, a tint toward white, a tone toward grey. Every step keeps the hue and is copy-ready.
Shades, toward black
Tints, toward white
Tones, toward grey
Palettes
What are Blue Gray Color Palette Codes?
Each of these is a hue rotation from #6699CC. They are generated, not curated, so they are exact.
Complementary
The opposite hue is #CC9966, a mid-tone, muted orange. Complements carry the strongest contrast of any two-color scheme, so this pair suits a call to action better than a background. Neither is especially saturated, so this pairing stays calm enough for large areas of both.
Analogous
Its two neighbours are #66CCCC and #6666CC. Because they overlap heavily in hue, nothing in the group competes, and the eye reads the whole set as a single color with variation.
Triadic
#CC6699 and #99CC66 complete an even 120 degree split. Three fully independent hues, so one has to lead: keep this base dominant and let the other two appear in small quantities.
Split-complementary
Instead of the direct complement, this takes the two hues either side of it: #CC6666 and #CCCC66. Almost the same contrast, without the edge shimmer a true complementary pair produces at high saturation.
Tetradic
Two complementary pairs forming a rectangle: this base with #CC9966, and #CC66CC with #66CC66. The richest of the five and the hardest to balance, so treat the darkest of the four as the lead and hold the other three well back.
Accessibility
Contrast checker: is Blue Gray accessible?
Measured against white and against black, with a separate verdict for each element type. Small text, large text and UI components have different thresholds, so one pass or fail for the whole color would be wrong roughly a third of the time.
White background
3.00:13.00
contrast ratio on white background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Fails | Fails |
| Large text needs 3:1 / 4.5:1 | Passes | Fails |
| UI component needs 3:1 | Passes | n/a |
Black background
6.99:16.99
contrast ratio on black background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Fails |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
Against white Blue Gray reaches 3.00:1, enough for large text and UI borders, but short of the 4.5:1 that body copy needs. Darken it for anything set small. Text placed on it should be black, which gives 6.99:1.
Color vision
How Blue Gray looks with color blindness
Around 300 million people see color differently from the way it is specified. Each card shows the actual color beside how it appears, and how common that form of vision is.
Protanopia
About 1% of men#7F80C1
Blue Gray shifts noticeably here. ΔE 19.0
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#7C78BF
Blue Gray shifts noticeably here. ΔE 23.4
No working green cones. With the milder deuteranomaly at nearer 6% of men, this is by far the most common form, and the one worth designing around.
Tritanopia
About 1 in 10,000#69B8B6
Blue Gray changes substantially here. ΔE 34.2
No working blue cones. Blues shift toward green and yellows toward pink. Rare, and unlike the others it is not sex-linked, so it affects men and women equally.
Achromatopsia
About 1 in 30,000#959595
Blue Gray changes substantially here. ΔE 31.6
No color vision at all. Also a fair proxy for how the color survives a greyscale print or a failing screen.
To a deuteranope, the most common form, Blue Gray reads as #7C78BF. That is a shift of ΔE 23.4, so it is a different color to roughly one man in sixteen. Blues survive red-green deficiency well, which is why so much interface design leans on them. The form to watch here is tritanopia, though at roughly 1 in 10,000 it affects far fewer people. The widest shift is under tritanopia, at ΔE 34.2. The rule this leads to needs no simulator: never let color be the only thing carrying a message. Add a label, an icon, or a clear difference in lightness, and the problem disappears for everyone.
Snippets
Using Blue Gray in code
:root {
--blue-gray: #6699CC;
}
.example {
color: var(--blue-gray);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'blue-gray': '#6699CC',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let blueGray = Color(
red: 0.400,
green: 0.600,
blue: 0.800
)
<!-- res/values/colors.xml -->
<color name="blue_gray">#6699CC</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const blueGray = Color(0xFF6699CC);