#aabbaa
a light, muted green · cool · closest name: silver
RGB
170, 187, 170
HSL
120°, 11%, 70%
CMYK
9, 0, 9, 27
Luminance
0.4699
Every format
| HEX | #aabbaa |
| RGB | rgb(170, 187, 170) |
| HSL | hsl(120, 11%, 70%) |
| CMYK | cmyk(9%, 0%, 9%, 27%) |
| LAB | lab(74.2 -9.1 6.6) |
| LCH | lch(74.2 11.3 143.9) |
| OKLCH | oklch(0.774 0.030 145.3) |
Copy-ready code
/* CSS */
color: #aabbaa;
background-color: #aabbaa;
/* Tailwind (arbitrary) */
class="text-[#aabbaa] bg-[#aabbaa]"
/* SCSS */
$brand: #aabbaa;
/* SwiftUI */
Color(red: 0.667, green: 0.733, blue: 0.667)
/* Android */
Color.parseColor("#aabbaa")Accessibility — WCAG contrast
Aa
#aabbaa on white: 2.02:1
AA ✗ fail · AA-large ✗ · AAA ✗
Aa
#aabbaa on black: 10.40:1
AA ✓ pass · AA-large ✓ · AAA ✓
true color
protanopia
deuteranopia
tritanopia
RGB percentages
Red66.7%
Green73.3%
Blue66.7%
CMYK percentages
Cyan9.1%
Magenta0.0%
Yellow9.1%
Key (black)26.7%
Color previews
#aabbaa text on a black background
contrast 10.40:1
Card sample
#aabbaa text on a white background
contrast 2.02:1
Card sample
CSS3 live lab
Text font color
The quick brown fox
color: #aabbaa;
Background color
Panel with #aabbaa background
background-color: #aabbaa;
Text shadow — hex
Glowing headline
text-shadow: 2px 2px 8px #aabbaa;
Text shadow — RGB
Soft neon halo
text-shadow: 0 0 14px rgba(170, 187, 170, 0.45);
Div box shadow
Elevated card
box-shadow: 0 12px 32px -8px rgba(170, 187, 170, 0.45);
Border & gradient
Gradient panel
border: 3px solid #aabbaa; background: linear-gradient(135deg, #aabbaa, #AABBB5);