HEX: #AB958F
RGB: (171,149,143)
#AB958F contains red, green and blue colors in about the same proportion. Web safe color of #AB958F is #999999 (or #999).
#AB958F color RGB value is (171,149,143).
RGB: (171,149,143) (67%,58%,56%)
R 171 of 255 = 67%
G 149 of 255 = 58%
B 143 of 255 = 56%
R + G + B ~ 60%. #AB958F is middle color (not dark and not light).
R + G + B =
171 + 149 + 143 = 463 (100%)
R 171 of 463 ~ 36.93%
G 149 of 463 ~ 32.18%
B 143 of 463 ~ 30.89%
#AB958F color CMYK value is (0,13,16,33).
CMYK: (0,13,16,33) C0M13Y16K33 (0%,13%,16%,33%) (0.00/0.13/0.16/0.33)
AB | 95 | 8F | |
---|---|---|---|
RGB | 171 | 149 | 143 |
HSL | 13° | 14.29% | 61.57% |
HSB/HSV | 13° | 16.37% | 67.06% |
CMYK | 0.00% | 12.87% | 16.37% |
32.94% |
HEX | AB | 95 | 8F |
Decimal | 171 | 149 | 143 |
Binary | 10101011 | 10010101 | 10001111 |
Octal | 253 | 225 | 217 |
Examples of css and html codes for elements with #AB958F color. Also use rgb(171,149,143) instead hex code.
.myTextColor { color: #AB958F; }
<p style="color:#AB958F">This sample text font color is #AB958F.</p>
This text font color is #AB958F.
.myBgColor { background-color: #AB958F; }
<div style="background-color:#AB958F">Inner text</div>
This div background color is #AB958F.
.myBorderColor { border: 1px solid #AB958F; }
<div style="border:3px solid #AB958F">Div</div>
This div border color is #AB958F.
.myOpacity80 { color: #AB958F; opacity: 0.8; }
<p style="color:#AB958F;opacity:0.8;">80%</p>
Text with #AB958F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB958F;}
<p style="text-shadow: 3px 3px 1px #AB958F">Text here.</p>
This text has shadow with #AB958F color.
.textShadow {text-shadow: 3px 3px 1px #AB958F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB958F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB958F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB958F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB958F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB958F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB958F; -webkit-box-shadow: 1px 1px 3px 2px #AB958F; box-shadow: 1px 1px 3px 2px #AB958F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB958F; -webkit-box-shadow: 1px 1px 3px 2px #AB958F; box-shadow:1px 1px 3px 2px #AB958F;">
Div content here</div>
This text has color #AB958F on black background.
This text has color #AB958F on white background.
This text has black color on #AB958F background.
This text has white color on #AB958F background.