HEX: #ADA47A
RGB: (173,164,122)
#ADA47A contains red, green and blue colors in about the same proportion. Web safe color of #ADA47A is #999966 (or #996).
#ADA47A color RGB value is (173,164,122).
RGB: (173,164,122) (68%,64%,48%)
R 173 of 255 = 68%
G 164 of 255 = 64%
B 122 of 255 = 48%
R + G + B ~ 60%. #ADA47A is middle color (not dark and not light).
R + G + B =
173 + 164 + 122 = 459 (100%)
R 173 of 459 ~ 37.69%
G 164 of 459 ~ 35.73%
B 122 of 459 ~ 26.58%
#ADA47A color CMYK value is (0,5,29,32).
CMYK: (0,5,29,32) C0M5Y29K32 (0%,5%,29%,32%) (0.00/0.05/0.29/0.32)
AD | A4 | 7A | |
---|---|---|---|
RGB | 173 | 164 | 122 |
HSL | 49° | 23.72% | 57.84% |
HSB/HSV | 49° | 29.48% | 67.84% |
CMYK | 0.00% | 5.20% | 29.48% |
32.16% |
HEX | AD | A4 | 7A |
Decimal | 173 | 164 | 122 |
Binary | 10101101 | 10100100 | 1111010 |
Octal | 255 | 244 | 172 |
Examples of css and html codes for elements with #ADA47A color. Also use rgb(173,164,122) instead hex code.
.myTextColor { color: #ADA47A; }
<p style="color:#ADA47A">This sample text font color is #ADA47A.</p>
This text font color is #ADA47A.
.myBgColor { background-color: #ADA47A; }
<div style="background-color:#ADA47A">Inner text</div>
This div background color is #ADA47A.
.myBorderColor { border: 1px solid #ADA47A; }
<div style="border:3px solid #ADA47A">Div</div>
This div border color is #ADA47A.
.myOpacity80 { color: #ADA47A; opacity: 0.8; }
<p style="color:#ADA47A;opacity:0.8;">80%</p>
Text with #ADA47A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA47A;}
<p style="text-shadow: 3px 3px 1px #ADA47A">Text here.</p>
This text has shadow with #ADA47A color.
.textShadow {text-shadow: 3px 3px 1px #ADA47A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA47A, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA47A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA47A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA47A, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA47A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA47A; -webkit-box-shadow: 1px 1px 3px 2px #ADA47A; box-shadow: 1px 1px 3px 2px #ADA47A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA47A; -webkit-box-shadow: 1px 1px 3px 2px #ADA47A; box-shadow:1px 1px 3px 2px #ADA47A;">
Div content here</div>
This text has color #ADA47A on black background.
This text has color #ADA47A on white background.
This text has black color on #ADA47A background.
This text has white color on #ADA47A background.