HEX: #ADA370
RGB: (173,163,112)
#ADA370 contains mainly red and green colors. Web safe color of #ADA370 is #999966 (or #996).
#ADA370 color RGB value is (173,163,112).
RGB: (173,163,112) (68%,64%,44%)
R 173 of 255 = 68%
G 163 of 255 = 64%
B 112 of 255 = 44%
R + G + B ~ 59%. #ADA370 is middle color (not dark and not light).
R + G + B =
173 + 163 + 112 = 448 (100%)
R 173 of 448 ~ 38.62%
G 163 of 448 ~ 36.38%
B 112 of 448 ~ 25%
#ADA370 color CMYK value is (0,6,35,32).
CMYK: (0,6,35,32) C0M6Y35K32 (0%,6%,35%,32%) (0.00/0.06/0.35/0.32)
AD | A3 | 70 | |
---|---|---|---|
RGB | 173 | 163 | 112 |
HSL | 50° | 27.11% | 55.88% |
HSB/HSV | 50° | 35.26% | 67.84% |
CMYK | 0.00% | 5.78% | 35.26% |
32.16% |
HEX | AD | A3 | 70 |
Decimal | 173 | 163 | 112 |
Binary | 10101101 | 10100011 | 1110000 |
Octal | 255 | 243 | 160 |
Examples of css and html codes for elements with #ADA370 color. Also use rgb(173,163,112) instead hex code.
.myTextColor { color: #ADA370; }
<p style="color:#ADA370">This sample text font color is #ADA370.</p>
This text font color is #ADA370.
.myBgColor { background-color: #ADA370; }
<div style="background-color:#ADA370">Inner text</div>
This div background color is #ADA370.
.myBorderColor { border: 1px solid #ADA370; }
<div style="border:3px solid #ADA370">Div</div>
This div border color is #ADA370.
.myOpacity80 { color: #ADA370; opacity: 0.8; }
<p style="color:#ADA370;opacity:0.8;">80%</p>
Text with #ADA370 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA370;}
<p style="text-shadow: 3px 3px 1px #ADA370">Text here.</p>
This text has shadow with #ADA370 color.
.textShadow {text-shadow: 3px 3px 1px #ADA370, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA370, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA370 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA370, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA370, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA370 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA370; -webkit-box-shadow: 1px 1px 3px 2px #ADA370; box-shadow: 1px 1px 3px 2px #ADA370; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA370; -webkit-box-shadow: 1px 1px 3px 2px #ADA370; box-shadow:1px 1px 3px 2px #ADA370;">
Div content here</div>
This text has color #ADA370 on black background.
This text has color #ADA370 on white background.
This text has black color on #ADA370 background.
This text has white color on #ADA370 background.