#aabbcc
a light, soft blue · cool · closest name: silver
RGB
170, 187, 204
HSL
210°, 25%, 73%
CMYK
17, 8, 0, 20
Luminance
0.4845
Every format
| HEX | #aabbcc |
| RGB | rgb(170, 187, 204) |
| HSL | hsl(210, 25%, 73%) |
| CMYK | cmyk(17%, 8%, 0%, 20%) |
| LAB | lab(75.1 -2.3 -10.5) |
| LCH | lch(75.1 10.8 257.7) |
| OKLCH | oklch(0.784 0.031 248.2) |
Copy-ready code
/* CSS */
color: #aabbcc;
background-color: #aabbcc;
/* Tailwind (arbitrary) */
class="text-[#aabbcc] bg-[#aabbcc]"
/* SCSS */
$brand: #aabbcc;
/* SwiftUI */
Color(red: 0.667, green: 0.733, blue: 0.800)
/* Android */
Color.parseColor("#aabbcc")Accessibility — WCAG contrast
Aa
#aabbcc on white: 1.96:1
AA ✗ fail · AA-large ✗ · AAA ✗
Aa
#aabbcc on black: 10.69:1
AA ✓ pass · AA-large ✓ · AAA ✓
true color
protanopia
deuteranopia
tritanopia
RGB percentages
Red66.7%
Green73.3%
Blue80.0%
CMYK percentages
Cyan16.7%
Magenta8.3%
Yellow0.0%
Key (black)20.0%
Color previews
#aabbcc text on a black background
contrast 10.69:1
Card sample
#aabbcc text on a white background
contrast 1.96:1
Card sample
CSS3 live lab
Text font color
The quick brown fox
color: #aabbcc;
Background color
Panel with #aabbcc background
background-color: #aabbcc;
Text shadow — hex
Glowing headline
text-shadow: 2px 2px 8px #aabbcc;
Text shadow — RGB
Soft neon halo
text-shadow: 0 0 14px rgba(170, 187, 204, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(170, 187, 204, 0.45);
Border & gradient
Gradient panel
border: 3px solid #aabbcc; background: linear-gradient(135deg, #aabbcc, #B0AACC);