HEX: #ABBDAF
RGB: (171,189,175)
#ABBDAF contains red, green and blue colors in about the same proportion. Web safe color of #ABBDAF is #99CC99 (or #9C9).
#ABBDAF color RGB value is (171,189,175).
RGB: (171,189,175) (67%,74%,69%)
R 171 of 255 = 67%
G 189 of 255 = 74%
B 175 of 255 = 69%
R + G + B ~ 70%. #ABBDAF is quite light color.
R + G + B =
171 + 189 + 175 = 535 (100%)
R 171 of 535 ~ 31.96%
G 189 of 535 ~ 35.33%
B 175 of 535 ~ 32.71%
#ABBDAF color CMYK value is (10,0,7,26).
CMYK: (10,0,7,26) C10M0Y7K26 (10%,0%,7%,26%) (0.10/0.00/0.07/0.26)
AB | BD | AF | |
---|---|---|---|
RGB | 171 | 189 | 175 |
HSL | 133° | 12.00% | 70.59% |
HSB/HSV | 133° | 9.52% | 74.12% |
CMYK | 9.52% | 0.00% | 7.41% |
25.88% |
HEX | AB | BD | AF |
Decimal | 171 | 189 | 175 |
Binary | 10101011 | 10111101 | 10101111 |
Octal | 253 | 275 | 257 |
Examples of css and html codes for elements with #ABBDAF color. Also use rgb(171,189,175) instead hex code.
.myTextColor { color: #ABBDAF; }
<p style="color:#ABBDAF">This sample text font color is #ABBDAF.</p>
This text font color is #ABBDAF.
.myBgColor { background-color: #ABBDAF; }
<div style="background-color:#ABBDAF">Inner text</div>
This div background color is #ABBDAF.
.myBorderColor { border: 1px solid #ABBDAF; }
<div style="border:3px solid #ABBDAF">Div</div>
This div border color is #ABBDAF.
.myOpacity80 { color: #ABBDAF; opacity: 0.8; }
<p style="color:#ABBDAF;opacity:0.8;">80%</p>
Text with #ABBDAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBDAF;}
<p style="text-shadow: 3px 3px 1px #ABBDAF">Text here.</p>
This text has shadow with #ABBDAF color.
.textShadow {text-shadow: 3px 3px 1px #ABBDAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBDAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBDAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBDAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBDAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBDAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBDAF; -webkit-box-shadow: 1px 1px 3px 2px #ABBDAF; box-shadow: 1px 1px 3px 2px #ABBDAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBDAF; -webkit-box-shadow: 1px 1px 3px 2px #ABBDAF; box-shadow:1px 1px 3px 2px #ABBDAF;">
Div content here</div>
This text has color #ABBDAF on black background.
This text has color #ABBDAF on white background.
This text has black color on #ABBDAF background.
This text has white color on #ABBDAF background.