HEX: #ABBCB9
RGB: (171,188,185)
#ABBCB9 contains red, green and blue colors in about the same proportion. Web safe color of #ABBCB9 is #99CCCC (or #9CC).
#ABBCB9 color RGB value is (171,188,185).
RGB: (171,188,185) (67%,74%,73%)
R 171 of 255 = 67%
G 188 of 255 = 74%
B 185 of 255 = 73%
R + G + B ~ 71%. #ABBCB9 is quite light color.
R + G + B =
171 + 188 + 185 = 544 (100%)
R 171 of 544 ~ 31.43%
G 188 of 544 ~ 34.56%
B 185 of 544 ~ 34.01%
#ABBCB9 color CMYK value is (9,0,2,26).
CMYK: (9,0,2,26) C9M0Y2K26 (9%,0%,2%,26%) (0.09/0.00/0.02/0.26)
AB | BC | B9 | |
---|---|---|---|
RGB | 171 | 188 | 185 |
HSL | 169° | 11.26% | 70.39% |
HSB/HSV | 169° | 9.04% | 73.73% |
CMYK | 9.04% | 0.00% | 1.60% |
26.27% |
HEX | AB | BC | B9 |
Decimal | 171 | 188 | 185 |
Binary | 10101011 | 10111100 | 10111001 |
Octal | 253 | 274 | 271 |
Examples of css and html codes for elements with #ABBCB9 color. Also use rgb(171,188,185) instead hex code.
.myTextColor { color: #ABBCB9; }
<p style="color:#ABBCB9">This sample text font color is #ABBCB9.</p>
This text font color is #ABBCB9.
.myBgColor { background-color: #ABBCB9; }
<div style="background-color:#ABBCB9">Inner text</div>
This div background color is #ABBCB9.
.myBorderColor { border: 1px solid #ABBCB9; }
<div style="border:3px solid #ABBCB9">Div</div>
This div border color is #ABBCB9.
.myOpacity80 { color: #ABBCB9; opacity: 0.8; }
<p style="color:#ABBCB9;opacity:0.8;">80%</p>
Text with #ABBCB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ABBCB9;}
<p style="text-shadow: 3px 3px 1px #ABBCB9">Text here.</p>
This text has shadow with #ABBCB9 color.
.textShadow {text-shadow: 3px 3px 1px #ABBCB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ABBCB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #ABBCB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ABBCB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ABBCB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #ABBCB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ABBCB9; -webkit-box-shadow: 1px 1px 3px 2px #ABBCB9; box-shadow: 1px 1px 3px 2px #ABBCB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ABBCB9; -webkit-box-shadow: 1px 1px 3px 2px #ABBCB9; box-shadow:1px 1px 3px 2px #ABBCB9;">
Div content here</div>
This text has color #ABBCB9 on black background.
This text has color #ABBCB9 on white background.
This text has black color on #ABBCB9 background.
This text has white color on #ABBCB9 background.