HEX: #ABB7AE
RGB: (171,183,174)
#ABB7AE contains red, green and blue colors in about the same proportion. Web safe color of #ABB7AE is #99CC99 (or #9C9).
#ABB7AE color RGB value is (171,183,174).
RGB: (171,183,174) (67%,72%,68%)
R 171 of 255 = 67%
G 183 of 255 = 72%
B 174 of 255 = 68%
R + G + B ~ 69%. #ABB7AE is quite light color.
R + G + B =
171 + 183 + 174 = 528 (100%)
R 171 of 528 ~ 32.39%
G 183 of 528 ~ 34.66%
B 174 of 528 ~ 32.95%
#ABB7AE color CMYK value is (7,0,5,28).
CMYK: (7,0,5,28) C7M0Y5K28 (7%,0%,5%,28%) (0.07/0.00/0.05/0.28)
AB | B7 | AE | |
---|---|---|---|
RGB | 171 | 183 | 174 |
HSL | 135° | 7.69% | 69.41% |
HSB/HSV | 135° | 6.56% | 71.76% |
CMYK | 6.56% | 0.00% | 4.92% |
28.24% |
HEX | AB | B7 | AE |
Decimal | 171 | 183 | 174 |
Binary | 10101011 | 10110111 | 10101110 |
Octal | 253 | 267 | 256 |
Examples of css and html codes for elements with #ABB7AE color. Also use rgb(171,183,174) instead hex code.
.myTextColor { color: #ABB7AE; }
<p style="color:#ABB7AE">This sample text font color is #ABB7AE.</p>
This text font color is #ABB7AE.
.myBgColor { background-color: #ABB7AE; }
<div style="background-color:#ABB7AE">Inner text</div>
This div background color is #ABB7AE.
.myBorderColor { border: 1px solid #ABB7AE; }
<div style="border:3px solid #ABB7AE">Div</div>
This div border color is #ABB7AE.
.myOpacity80 { color: #ABB7AE; opacity: 0.8; }
<p style="color:#ABB7AE;opacity:0.8;">80%</p>
Text with #ABB7AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABB7AE;}
<p style="text-shadow: 3px 3px 1px #ABB7AE">Text here.</p>
This text has shadow with #ABB7AE color.
.textShadow {text-shadow: 3px 3px 1px #ABB7AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABB7AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABB7AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABB7AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABB7AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABB7AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABB7AE; -webkit-box-shadow: 1px 1px 3px 2px #ABB7AE; box-shadow: 1px 1px 3px 2px #ABB7AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABB7AE; -webkit-box-shadow: 1px 1px 3px 2px #ABB7AE; box-shadow:1px 1px 3px 2px #ABB7AE;">
Div content here</div>
This text has color #ABB7AE on black background.
This text has color #ABB7AE on white background.
This text has black color on #ABB7AE background.
This text has white color on #ABB7AE background.