HEX: #ADAD5E
RGB: (173,173,94)
#ADAD5E contains mainly red and green colors. Web safe color of #ADAD5E is #999966 (or #996).
#ADAD5E color RGB value is (173,173,94).
RGB: (173,173,94) (68%,68%,37%)
R 173 of 255 = 68%
G 173 of 255 = 68%
B 94 of 255 = 37%
R + G + B ~ 58%. #ADAD5E is middle color (not dark and not light).
R + G + B =
173 + 173 + 94 = 440 (100%)
R 173 of 440 ~ 39.32%
G 173 of 440 ~ 39.32%
B 94 of 440 ~ 21.36%
#ADAD5E color CMYK value is (0,0,46,32).
CMYK: (0,0,46,32) C0M0Y46K32 (0%,0%,46%,32%) (0.00/0.00/0.46/0.32)
AD | AD | 5E | |
---|---|---|---|
RGB | 173 | 173 | 94 |
HSL | 60° | 32.51% | 52.35% |
HSB/HSV | 60° | 45.66% | 67.84% |
CMYK | 0.00% | 0.00% | 45.66% |
32.16% |
HEX | AD | AD | 5E |
Decimal | 173 | 173 | 94 |
Binary | 10101101 | 10101101 | 1011110 |
Octal | 255 | 255 | 136 |
Examples of css and html codes for elements with #ADAD5E color. Also use rgb(173,173,94) instead hex code.
.myTextColor { color: #ADAD5E; }
<p style="color:#ADAD5E">This sample text font color is #ADAD5E.</p>
This text font color is #ADAD5E.
.myBgColor { background-color: #ADAD5E; }
<div style="background-color:#ADAD5E">Inner text</div>
This div background color is #ADAD5E.
.myBorderColor { border: 1px solid #ADAD5E; }
<div style="border:3px solid #ADAD5E">Div</div>
This div border color is #ADAD5E.
.myOpacity80 { color: #ADAD5E; opacity: 0.8; }
<p style="color:#ADAD5E;opacity:0.8;">80%</p>
Text with #ADAD5E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADAD5E;}
<p style="text-shadow: 3px 3px 1px #ADAD5E">Text here.</p>
This text has shadow with #ADAD5E color.
.textShadow {text-shadow: 3px 3px 1px #ADAD5E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADAD5E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADAD5E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADAD5E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADAD5E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADAD5E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADAD5E; -webkit-box-shadow: 1px 1px 3px 2px #ADAD5E; box-shadow: 1px 1px 3px 2px #ADAD5E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADAD5E; -webkit-box-shadow: 1px 1px 3px 2px #ADAD5E; box-shadow:1px 1px 3px 2px #ADAD5E;">
Div content here</div>
This text has color #ADAD5E on black background.
This text has color #ADAD5E on white background.
This text has black color on #ADAD5E background.
This text has white color on #ADAD5E background.