HEX: #AD8E77
RGB: (173,142,119)
#AD8E77 contains red, green and blue colors in about the same proportion. Web safe color of #AD8E77 is #999966 (or #996).
#AD8E77 color RGB value is (173,142,119).
RGB: (173,142,119) (68%,56%,47%)
R 173 of 255 = 68%
G 142 of 255 = 56%
B 119 of 255 = 47%
R + G + B ~ 57%. #AD8E77 is middle color (not dark and not light).
R + G + B =
173 + 142 + 119 = 434 (100%)
R 173 of 434 ~ 39.86%
G 142 of 434 ~ 32.72%
B 119 of 434 ~ 27.42%
#AD8E77 color CMYK value is (0,18,31,32).
CMYK: (0,18,31,32) C0M18Y31K32 (0%,18%,31%,32%) (0.00/0.18/0.31/0.32)
AD | 8E | 77 | |
---|---|---|---|
RGB | 173 | 142 | 119 |
HSL | 26° | 24.77% | 57.25% |
HSB/HSV | 26° | 31.21% | 67.84% |
CMYK | 0.00% | 17.92% | 31.21% |
32.16% |
HEX | AD | 8E | 77 |
Decimal | 173 | 142 | 119 |
Binary | 10101101 | 10001110 | 1110111 |
Octal | 255 | 216 | 167 |
Examples of css and html codes for elements with #AD8E77 color. Also use rgb(173,142,119) instead hex code.
.myTextColor { color: #AD8E77; }
<p style="color:#AD8E77">This sample text font color is #AD8E77.</p>
This text font color is #AD8E77.
.myBgColor { background-color: #AD8E77; }
<div style="background-color:#AD8E77">Inner text</div>
This div background color is #AD8E77.
.myBorderColor { border: 1px solid #AD8E77; }
<div style="border:3px solid #AD8E77">Div</div>
This div border color is #AD8E77.
.myOpacity80 { color: #AD8E77; opacity: 0.8; }
<p style="color:#AD8E77;opacity:0.8;">80%</p>
Text with #AD8E77 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD8E77;}
<p style="text-shadow: 3px 3px 1px #AD8E77">Text here.</p>
This text has shadow with #AD8E77 color.
.textShadow {text-shadow: 3px 3px 1px #AD8E77, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD8E77, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD8E77 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD8E77, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD8E77, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD8E77 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD8E77; -webkit-box-shadow: 1px 1px 3px 2px #AD8E77; box-shadow: 1px 1px 3px 2px #AD8E77; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD8E77; -webkit-box-shadow: 1px 1px 3px 2px #AD8E77; box-shadow:1px 1px 3px 2px #AD8E77;">
Div content here</div>
This text has color #AD8E77 on black background.
This text has color #AD8E77 on white background.
This text has black color on #AD8E77 background.
This text has white color on #AD8E77 background.