HEX: #AD9D7E
RGB: (173,157,126)
#AD9D7E contains red, green and blue colors in about the same proportion. Web safe color of #AD9D7E is #999966 (or #996).
#AD9D7E color RGB value is (173,157,126).
RGB: (173,157,126) (68%,62%,49%)
R 173 of 255 = 68%
G 157 of 255 = 62%
B 126 of 255 = 49%
R + G + B ~ 60%. #AD9D7E is middle color (not dark and not light).
R + G + B =
173 + 157 + 126 = 456 (100%)
R 173 of 456 ~ 37.94%
G 157 of 456 ~ 34.43%
B 126 of 456 ~ 27.63%
#AD9D7E color CMYK value is (0,9,27,32).
CMYK: (0,9,27,32) C0M9Y27K32 (0%,9%,27%,32%) (0.00/0.09/0.27/0.32)
AD | 9D | 7E | |
---|---|---|---|
RGB | 173 | 157 | 126 |
HSL | 40° | 22.27% | 58.63% |
HSB/HSV | 40° | 27.17% | 67.84% |
CMYK | 0.00% | 9.25% | 27.17% |
32.16% |
HEX | AD | 9D | 7E |
Decimal | 173 | 157 | 126 |
Binary | 10101101 | 10011101 | 1111110 |
Octal | 255 | 235 | 176 |
Examples of css and html codes for elements with #AD9D7E color. Also use rgb(173,157,126) instead hex code.
.myTextColor { color: #AD9D7E; }
<p style="color:#AD9D7E">This sample text font color is #AD9D7E.</p>
This text font color is #AD9D7E.
.myBgColor { background-color: #AD9D7E; }
<div style="background-color:#AD9D7E">Inner text</div>
This div background color is #AD9D7E.
.myBorderColor { border: 1px solid #AD9D7E; }
<div style="border:3px solid #AD9D7E">Div</div>
This div border color is #AD9D7E.
.myOpacity80 { color: #AD9D7E; opacity: 0.8; }
<p style="color:#AD9D7E;opacity:0.8;">80%</p>
Text with #AD9D7E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD9D7E;}
<p style="text-shadow: 3px 3px 1px #AD9D7E">Text here.</p>
This text has shadow with #AD9D7E color.
.textShadow {text-shadow: 3px 3px 1px #AD9D7E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD9D7E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD9D7E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD9D7E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD9D7E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD9D7E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD9D7E; -webkit-box-shadow: 1px 1px 3px 2px #AD9D7E; box-shadow: 1px 1px 3px 2px #AD9D7E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD9D7E; -webkit-box-shadow: 1px 1px 3px 2px #AD9D7E; box-shadow:1px 1px 3px 2px #AD9D7E;">
Div content here</div>
This text has color #AD9D7E on black background.
This text has color #AD9D7E on white background.
This text has black color on #AD9D7E background.
This text has white color on #AD9D7E background.