HEX: #AD9E8D
RGB: (173,158,141)
#AD9E8D contains red, green and blue colors in about the same proportion. Web safe color of #AD9E8D is #999999 (or #999).
#AD9E8D color RGB value is (173,158,141).
RGB: (173,158,141) (68%,62%,55%)
R 173 of 255 = 68%
G 158 of 255 = 62%
B 141 of 255 = 55%
R + G + B ~ 62%. #AD9E8D is quite light color.
R + G + B =
173 + 158 + 141 = 472 (100%)
R 173 of 472 ~ 36.65%
G 158 of 472 ~ 33.47%
B 141 of 472 ~ 29.87%
#AD9E8D color CMYK value is (0,9,18,32).
CMYK: (0,9,18,32) C0M9Y18K32 (0%,9%,18%,32%) (0.00/0.09/0.18/0.32)
AD | 9E | 8D | |
---|---|---|---|
RGB | 173 | 158 | 141 |
HSL | 32° | 16.33% | 61.57% |
HSB/HSV | 32° | 18.50% | 67.84% |
CMYK | 0.00% | 8.67% | 18.50% |
32.16% |
HEX | AD | 9E | 8D |
Decimal | 173 | 158 | 141 |
Binary | 10101101 | 10011110 | 10001101 |
Octal | 255 | 236 | 215 |
Examples of css and html codes for elements with #AD9E8D color. Also use rgb(173,158,141) instead hex code.
.myTextColor { color: #AD9E8D; }
<p style="color:#AD9E8D">This sample text font color is #AD9E8D.</p>
This text font color is #AD9E8D.
.myBgColor { background-color: #AD9E8D; }
<div style="background-color:#AD9E8D">Inner text</div>
This div background color is #AD9E8D.
.myBorderColor { border: 1px solid #AD9E8D; }
<div style="border:3px solid #AD9E8D">Div</div>
This div border color is #AD9E8D.
.myOpacity80 { color: #AD9E8D; opacity: 0.8; }
<p style="color:#AD9E8D;opacity:0.8;">80%</p>
Text with #AD9E8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD9E8D;}
<p style="text-shadow: 3px 3px 1px #AD9E8D">Text here.</p>
This text has shadow with #AD9E8D color.
.textShadow {text-shadow: 3px 3px 1px #AD9E8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD9E8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD9E8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD9E8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD9E8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD9E8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD9E8D; -webkit-box-shadow: 1px 1px 3px 2px #AD9E8D; box-shadow: 1px 1px 3px 2px #AD9E8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD9E8D; -webkit-box-shadow: 1px 1px 3px 2px #AD9E8D; box-shadow:1px 1px 3px 2px #AD9E8D;">
Div content here</div>
This text has color #AD9E8D on black background.
This text has color #AD9E8D on white background.
This text has black color on #AD9E8D background.
This text has white color on #AD9E8D background.