HEX: #ABAAA5
RGB: (171,170,165)
#ABAAA5 contains red, green and blue colors in about the same proportion. Web safe color of #ABAAA5 is #999999 (or #999).
#ABAAA5 color RGB value is (171,170,165).
RGB: (171,170,165) (67%,67%,65%)
R 171 of 255 = 67%
G 170 of 255 = 67%
B 165 of 255 = 65%
R + G + B ~ 66%. #ABAAA5 is quite light color.
R + G + B =
171 + 170 + 165 = 506 (100%)
R 171 of 506 ~ 33.79%
G 170 of 506 ~ 33.6%
B 165 of 506 ~ 32.61%
#ABAAA5 color CMYK value is (0,1,4,33).
CMYK: (0,1,4,33) C0M1Y4K33 (0%,1%,4%,33%) (0.00/0.01/0.04/0.33)
AB | AA | A5 | |
---|---|---|---|
RGB | 171 | 170 | 165 |
HSL | 50° | 3.45% | 65.88% |
HSB/HSV | 50° | 3.51% | 67.06% |
CMYK | 0.00% | 0.58% | 3.51% |
32.94% |
HEX | AB | AA | A5 |
Decimal | 171 | 170 | 165 |
Binary | 10101011 | 10101010 | 10100101 |
Octal | 253 | 252 | 245 |
Examples of css and html codes for elements with #ABAAA5 color. Also use rgb(171,170,165) instead hex code.
.myTextColor { color: #ABAAA5; }
<p style="color:#ABAAA5">This sample text font color is #ABAAA5.</p>
This text font color is #ABAAA5.
.myBgColor { background-color: #ABAAA5; }
<div style="background-color:#ABAAA5">Inner text</div>
This div background color is #ABAAA5.
.myBorderColor { border: 1px solid #ABAAA5; }
<div style="border:3px solid #ABAAA5">Div</div>
This div border color is #ABAAA5.
.myOpacity80 { color: #ABAAA5; opacity: 0.8; }
<p style="color:#ABAAA5;opacity:0.8;">80%</p>
Text with #ABAAA5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABAAA5;}
<p style="text-shadow: 3px 3px 1px #ABAAA5">Text here.</p>
This text has shadow with #ABAAA5 color.
.textShadow {text-shadow: 3px 3px 1px #ABAAA5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABAAA5, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABAAA5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABAAA5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABAAA5, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABAAA5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABAAA5; -webkit-box-shadow: 1px 1px 3px 2px #ABAAA5; box-shadow: 1px 1px 3px 2px #ABAAA5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABAAA5; -webkit-box-shadow: 1px 1px 3px 2px #ABAAA5; box-shadow:1px 1px 3px 2px #ABAAA5;">
Div content here</div>
This text has color #ABAAA5 on black background.
This text has color #ABAAA5 on white background.
This text has black color on #ABAAA5 background.
This text has white color on #ABAAA5 background.