HEX: #A8887E
RGB: (168,136,126)
#A8887E contains red, green and blue colors in about the same proportion. Web safe color of #A8887E is #999966 (or #996).
#A8887E color RGB value is (168,136,126).
RGB: (168,136,126) (66%,53%,49%)
R 168 of 255 = 66%
G 136 of 255 = 53%
B 126 of 255 = 49%
R + G + B ~ 56%. #A8887E is middle color (not dark and not light).
R + G + B =
168 + 136 + 126 = 430 (100%)
R 168 of 430 ~ 39.07%
G 136 of 430 ~ 31.63%
B 126 of 430 ~ 29.3%
#A8887E color CMYK value is (0,19,25,34).
CMYK: (0,19,25,34) C0M19Y25K34 (0%,19%,25%,34%) (0.00/0.19/0.25/0.34)
A8 | 88 | 7E | |
---|---|---|---|
RGB | 168 | 136 | 126 |
HSL | 14° | 19.44% | 57.65% |
HSB/HSV | 14° | 25.00% | 65.88% |
CMYK | 0.00% | 19.05% | 25.00% |
34.12% |
HEX | A8 | 88 | 7E |
Decimal | 168 | 136 | 126 |
Binary | 10101000 | 10001000 | 1111110 |
Octal | 250 | 210 | 176 |
Examples of css and html codes for elements with #A8887E color. Also use rgb(168,136,126) instead hex code.
.myTextColor { color: #A8887E; }
<p style="color:#A8887E">This sample text font color is #A8887E.</p>
This text font color is #A8887E.
.myBgColor { background-color: #A8887E; }
<div style="background-color:#A8887E">Inner text</div>
This div background color is #A8887E.
.myBorderColor { border: 1px solid #A8887E; }
<div style="border:3px solid #A8887E">Div</div>
This div border color is #A8887E.
.myOpacity80 { color: #A8887E; opacity: 0.8; }
<p style="color:#A8887E;opacity:0.8;">80%</p>
Text with #A8887E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A8887E;}
<p style="text-shadow: 3px 3px 1px #A8887E">Text here.</p>
This text has shadow with #A8887E color.
.textShadow {text-shadow: 3px 3px 1px #A8887E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A8887E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A8887E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A8887E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A8887E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A8887E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A8887E; -webkit-box-shadow: 1px 1px 3px 2px #A8887E; box-shadow: 1px 1px 3px 2px #A8887E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A8887E; -webkit-box-shadow: 1px 1px 3px 2px #A8887E; box-shadow:1px 1px 3px 2px #A8887E;">
Div content here</div>
This text has color #A8887E on black background.
This text has color #A8887E on white background.
This text has black color on #A8887E background.
This text has white color on #A8887E background.