HEX: #AD887F
RGB: (173,136,127)
#AD887F contains red, green and blue colors in about the same proportion. Web safe color of #AD887F is #999966 (or #996).
#AD887F color RGB value is (173,136,127).
RGB: (173,136,127) (68%,53%,50%)
R 173 of 255 = 68%
G 136 of 255 = 53%
B 127 of 255 = 50%
R + G + B ~ 57%. #AD887F is middle color (not dark and not light).
R + G + B =
173 + 136 + 127 = 436 (100%)
R 173 of 436 ~ 39.68%
G 136 of 436 ~ 31.19%
B 127 of 436 ~ 29.13%
#AD887F color CMYK value is (0,21,27,32).
CMYK: (0,21,27,32) C0M21Y27K32 (0%,21%,27%,32%) (0.00/0.21/0.27/0.32)
AD | 88 | 7F | |
---|---|---|---|
RGB | 173 | 136 | 127 |
HSL | 12° | 21.90% | 58.82% |
HSB/HSV | 12° | 26.59% | 67.84% |
CMYK | 0.00% | 21.39% | 26.59% |
32.16% |
HEX | AD | 88 | 7F |
Decimal | 173 | 136 | 127 |
Binary | 10101101 | 10001000 | 1111111 |
Octal | 255 | 210 | 177 |
Examples of css and html codes for elements with #AD887F color. Also use rgb(173,136,127) instead hex code.
.myTextColor { color: #AD887F; }
<p style="color:#AD887F">This sample text font color is #AD887F.</p>
This text font color is #AD887F.
.myBgColor { background-color: #AD887F; }
<div style="background-color:#AD887F">Inner text</div>
This div background color is #AD887F.
.myBorderColor { border: 1px solid #AD887F; }
<div style="border:3px solid #AD887F">Div</div>
This div border color is #AD887F.
.myOpacity80 { color: #AD887F; opacity: 0.8; }
<p style="color:#AD887F;opacity:0.8;">80%</p>
Text with #AD887F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD887F;}
<p style="text-shadow: 3px 3px 1px #AD887F">Text here.</p>
This text has shadow with #AD887F color.
.textShadow {text-shadow: 3px 3px 1px #AD887F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD887F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD887F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD887F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD887F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD887F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD887F; -webkit-box-shadow: 1px 1px 3px 2px #AD887F; box-shadow: 1px 1px 3px 2px #AD887F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD887F; -webkit-box-shadow: 1px 1px 3px 2px #AD887F; box-shadow:1px 1px 3px 2px #AD887F;">
Div content here</div>
This text has color #AD887F on black background.
This text has color #AD887F on white background.
This text has black color on #AD887F background.
This text has white color on #AD887F background.