HEX: #ABAEA1
RGB: (171,174,161)
#ABAEA1 contains red, green and blue colors in about the same proportion. Web safe color of #ABAEA1 is #999999 (or #999).
#ABAEA1 color RGB value is (171,174,161).
RGB: (171,174,161) (67%,68%,63%)
R 171 of 255 = 67%
G 174 of 255 = 68%
B 161 of 255 = 63%
R + G + B ~ 66%. #ABAEA1 is quite light color.
R + G + B =
171 + 174 + 161 = 506 (100%)
R 171 of 506 ~ 33.79%
G 174 of 506 ~ 34.39%
B 161 of 506 ~ 31.82%
#ABAEA1 color CMYK value is (2,0,7,32).
CMYK: (2,0,7,32) C2M0Y7K32 (2%,0%,7%,32%) (0.02/0.00/0.07/0.32)
AB | AE | A1 | |
---|---|---|---|
RGB | 171 | 174 | 161 |
HSL | 74° | 7.43% | 65.69% |
HSB/HSV | 74° | 7.47% | 68.24% |
CMYK | 1.72% | 0.00% | 7.47% |
31.76% |
HEX | AB | AE | A1 |
Decimal | 171 | 174 | 161 |
Binary | 10101011 | 10101110 | 10100001 |
Octal | 253 | 256 | 241 |
Examples of css and html codes for elements with #ABAEA1 color. Also use rgb(171,174,161) instead hex code.
.myTextColor { color: #ABAEA1; }
<p style="color:#ABAEA1">This sample text font color is #ABAEA1.</p>
This text font color is #ABAEA1.
.myBgColor { background-color: #ABAEA1; }
<div style="background-color:#ABAEA1">Inner text</div>
This div background color is #ABAEA1.
.myBorderColor { border: 1px solid #ABAEA1; }
<div style="border:3px solid #ABAEA1">Div</div>
This div border color is #ABAEA1.
.myOpacity80 { color: #ABAEA1; opacity: 0.8; }
<p style="color:#ABAEA1;opacity:0.8;">80%</p>
Text with #ABAEA1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABAEA1;}
<p style="text-shadow: 3px 3px 1px #ABAEA1">Text here.</p>
This text has shadow with #ABAEA1 color.
.textShadow {text-shadow: 3px 3px 1px #ABAEA1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABAEA1, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABAEA1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABAEA1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABAEA1, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABAEA1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABAEA1; -webkit-box-shadow: 1px 1px 3px 2px #ABAEA1; box-shadow: 1px 1px 3px 2px #ABAEA1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABAEA1; -webkit-box-shadow: 1px 1px 3px 2px #ABAEA1; box-shadow:1px 1px 3px 2px #ABAEA1;">
Div content here</div>
This text has color #ABAEA1 on black background.
This text has color #ABAEA1 on white background.
This text has black color on #ABAEA1 background.
This text has white color on #ABAEA1 background.