#aabbcd
a light, soft blue · cool · closest name: silver
RGB
170, 187, 205
HSL
211°, 26%, 74%
CMYK
17, 9, 0, 20
Luminance
0.4849
Every format
| HEX | #aabbcd |
| RGB | rgb(170, 187, 205) |
| HSL | hsl(211, 26%, 74%) |
| CMYK | cmyk(17%, 9%, 0%, 20%) |
| LAB | lab(75.1 -2.1 -11.0) |
| LCH | lch(75.1 11.2 259.3) |
| OKLCH | oklch(0.785 0.032 249.8) |
Copy-ready code
/* CSS */
color: #aabbcd;
background-color: #aabbcd;
/* Tailwind (arbitrary) */
class="text-[#aabbcd] bg-[#aabbcd]"
/* SCSS */
$brand: #aabbcd;
/* SwiftUI */
Color(red: 0.667, green: 0.733, blue: 0.804)
/* Android */
Color.parseColor("#aabbcd")Accessibility — WCAG contrast
Aa
#aabbcd on white: 1.96:1
AA ✗ fail · AA-large ✗ · AAA ✗
Aa
#aabbcd on black: 10.70:1
AA ✓ pass · AA-large ✓ · AAA ✓
true color
protanopia
deuteranopia
tritanopia
RGB percentages
Red66.7%
Green73.3%
Blue80.4%
CMYK percentages
Cyan17.1%
Magenta8.8%
Yellow0.0%
Key (black)19.6%
Color previews
#aabbcd text on a black background
contrast 10.70:1
Card sample
#aabbcd text on a white background
contrast 1.96:1
Card sample
CSS3 live lab
Text font color
The quick brown fox
color: #aabbcd;
Background color
Panel with #aabbcd background
background-color: #aabbcd;
Text shadow — hex
Glowing headline
text-shadow: 2px 2px 8px #aabbcd;
Text shadow — RGB
Soft neon halo
text-shadow: 0 0 14px rgba(170, 187, 205, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(170, 187, 205, 0.45);
Border & gradient
Gradient panel
border: 3px solid #aabbcd; background: linear-gradient(135deg, #aabbcd, #B0AACD);