HEX: #AB847B
RGB: (171,132,123)
#AB847B contains red, green and blue colors in about the same proportion. Web safe color of #AB847B is #999966 (or #996).
#AB847B color RGB value is (171,132,123).
RGB: (171,132,123) (67%,52%,48%)
R 171 of 255 = 67%
G 132 of 255 = 52%
B 123 of 255 = 48%
R + G + B ~ 56%. #AB847B is middle color (not dark and not light).
R + G + B =
171 + 132 + 123 = 426 (100%)
R 171 of 426 ~ 40.14%
G 132 of 426 ~ 30.99%
B 123 of 426 ~ 28.87%
#AB847B color CMYK value is (0,23,28,33).
CMYK: (0,23,28,33) C0M23Y28K33 (0%,23%,28%,33%) (0.00/0.23/0.28/0.33)
AB | 84 | 7B | |
---|---|---|---|
RGB | 171 | 132 | 123 |
HSL | 11° | 22.22% | 57.65% |
HSB/HSV | 11° | 28.07% | 67.06% |
CMYK | 0.00% | 22.81% | 28.07% |
32.94% |
HEX | AB | 84 | 7B |
Decimal | 171 | 132 | 123 |
Binary | 10101011 | 10000100 | 1111011 |
Octal | 253 | 204 | 173 |
Examples of css and html codes for elements with #AB847B color. Also use rgb(171,132,123) instead hex code.
.myTextColor { color: #AB847B; }
<p style="color:#AB847B">This sample text font color is #AB847B.</p>
This text font color is #AB847B.
.myBgColor { background-color: #AB847B; }
<div style="background-color:#AB847B">Inner text</div>
This div background color is #AB847B.
.myBorderColor { border: 1px solid #AB847B; }
<div style="border:3px solid #AB847B">Div</div>
This div border color is #AB847B.
.myOpacity80 { color: #AB847B; opacity: 0.8; }
<p style="color:#AB847B;opacity:0.8;">80%</p>
Text with #AB847B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB847B;}
<p style="text-shadow: 3px 3px 1px #AB847B">Text here.</p>
This text has shadow with #AB847B color.
.textShadow {text-shadow: 3px 3px 1px #AB847B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB847B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB847B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB847B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB847B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB847B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB847B; -webkit-box-shadow: 1px 1px 3px 2px #AB847B; box-shadow: 1px 1px 3px 2px #AB847B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB847B; -webkit-box-shadow: 1px 1px 3px 2px #AB847B; box-shadow:1px 1px 3px 2px #AB847B;">
Div content here</div>
This text has color #AB847B on black background.
This text has color #AB847B on white background.
This text has black color on #AB847B background.
This text has white color on #AB847B background.