HEX: #AB8E6E
RGB: (171,142,110)
#AB8E6E contains mainly red and green colors. Web safe color of #AB8E6E is #999966 (or #996).
#AB8E6E color RGB value is (171,142,110).
RGB: (171,142,110) (67%,56%,43%)
R 171 of 255 = 67%
G 142 of 255 = 56%
B 110 of 255 = 43%
R + G + B ~ 55%. #AB8E6E is middle color (not dark and not light).
R + G + B =
171 + 142 + 110 = 423 (100%)
R 171 of 423 ~ 40.43%
G 142 of 423 ~ 33.57%
B 110 of 423 ~ 26%
#AB8E6E color CMYK value is (0,17,36,33).
CMYK: (0,17,36,33) C0M17Y36K33 (0%,17%,36%,33%) (0.00/0.17/0.36/0.33)
AB | 8E | 6E | |
---|---|---|---|
RGB | 171 | 142 | 110 |
HSL | 31° | 26.64% | 55.10% |
HSB/HSV | 31° | 35.67% | 67.06% |
CMYK | 0.00% | 16.96% | 35.67% |
32.94% |
HEX | AB | 8E | 6E |
Decimal | 171 | 142 | 110 |
Binary | 10101011 | 10001110 | 1101110 |
Octal | 253 | 216 | 156 |
Examples of css and html codes for elements with #AB8E6E color. Also use rgb(171,142,110) instead hex code.
.myTextColor { color: #AB8E6E; }
<p style="color:#AB8E6E">This sample text font color is #AB8E6E.</p>
This text font color is #AB8E6E.
.myBgColor { background-color: #AB8E6E; }
<div style="background-color:#AB8E6E">Inner text</div>
This div background color is #AB8E6E.
.myBorderColor { border: 1px solid #AB8E6E; }
<div style="border:3px solid #AB8E6E">Div</div>
This div border color is #AB8E6E.
.myOpacity80 { color: #AB8E6E; opacity: 0.8; }
<p style="color:#AB8E6E;opacity:0.8;">80%</p>
Text with #AB8E6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB8E6E;}
<p style="text-shadow: 3px 3px 1px #AB8E6E">Text here.</p>
This text has shadow with #AB8E6E color.
.textShadow {text-shadow: 3px 3px 1px #AB8E6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB8E6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB8E6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB8E6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB8E6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB8E6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB8E6E; -webkit-box-shadow: 1px 1px 3px 2px #AB8E6E; box-shadow: 1px 1px 3px 2px #AB8E6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB8E6E; -webkit-box-shadow: 1px 1px 3px 2px #AB8E6E; box-shadow:1px 1px 3px 2px #AB8E6E;">
Div content here</div>
This text has color #AB8E6E on black background.
This text has color #AB8E6E on white background.
This text has black color on #AB8E6E background.
This text has white color on #AB8E6E background.