HEX: #ADA99D
RGB: (173,169,157)
#ADA99D contains red, green and blue colors in about the same proportion. Web safe color of #ADA99D is #999999 (or #999).
#ADA99D color RGB value is (173,169,157).
RGB: (173,169,157) (68%,66%,62%)
R 173 of 255 = 68%
G 169 of 255 = 66%
B 157 of 255 = 62%
R + G + B ~ 65%. #ADA99D is quite light color.
R + G + B =
173 + 169 + 157 = 499 (100%)
R 173 of 499 ~ 34.67%
G 169 of 499 ~ 33.87%
B 157 of 499 ~ 31.46%
#ADA99D color CMYK value is (0,2,9,32).
CMYK: (0,2,9,32) C0M2Y9K32 (0%,2%,9%,32%) (0.00/0.02/0.09/0.32)
AD | A9 | 9D | |
---|---|---|---|
RGB | 173 | 169 | 157 |
HSL | 45° | 8.89% | 64.71% |
HSB/HSV | 45° | 9.25% | 67.84% |
CMYK | 0.00% | 2.31% | 9.25% |
32.16% |
HEX | AD | A9 | 9D |
Decimal | 173 | 169 | 157 |
Binary | 10101101 | 10101001 | 10011101 |
Octal | 255 | 251 | 235 |
Examples of css and html codes for elements with #ADA99D color. Also use rgb(173,169,157) instead hex code.
.myTextColor { color: #ADA99D; }
<p style="color:#ADA99D">This sample text font color is #ADA99D.</p>
This text font color is #ADA99D.
.myBgColor { background-color: #ADA99D; }
<div style="background-color:#ADA99D">Inner text</div>
This div background color is #ADA99D.
.myBorderColor { border: 1px solid #ADA99D; }
<div style="border:3px solid #ADA99D">Div</div>
This div border color is #ADA99D.
.myOpacity80 { color: #ADA99D; opacity: 0.8; }
<p style="color:#ADA99D;opacity:0.8;">80%</p>
Text with #ADA99D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA99D;}
<p style="text-shadow: 3px 3px 1px #ADA99D">Text here.</p>
This text has shadow with #ADA99D color.
.textShadow {text-shadow: 3px 3px 1px #ADA99D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA99D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA99D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA99D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA99D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA99D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA99D; -webkit-box-shadow: 1px 1px 3px 2px #ADA99D; box-shadow: 1px 1px 3px 2px #ADA99D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA99D; -webkit-box-shadow: 1px 1px 3px 2px #ADA99D; box-shadow:1px 1px 3px 2px #ADA99D;">
Div content here</div>
This text has color #ADA99D on black background.
This text has color #ADA99D on white background.
This text has black color on #ADA99D background.
This text has white color on #ADA99D background.