HEX: #ADB37E
RGB: (173,179,126)
#ADB37E contains red, green and blue colors in about the same proportion. Web safe color of #ADB37E is #999966 (or #996).
#ADB37E color RGB value is (173,179,126).
RGB: (173,179,126) (68%,70%,49%)
R 173 of 255 = 68%
G 179 of 255 = 70%
B 126 of 255 = 49%
R + G + B ~ 62%. #ADB37E is quite light color.
R + G + B =
173 + 179 + 126 = 478 (100%)
R 173 of 478 ~ 36.19%
G 179 of 478 ~ 37.45%
B 126 of 478 ~ 26.36%
#ADB37E color CMYK value is (3,0,30,30).
CMYK: (3,0,30,30) C3M0Y30K30 (3%,0%,30%,30%) (0.03/0.00/0.30/0.30)
AD | B3 | 7E | |
---|---|---|---|
RGB | 173 | 179 | 126 |
HSL | 67° | 25.85% | 59.80% |
HSB/HSV | 67° | 29.61% | 70.20% |
CMYK | 3.35% | 0.00% | 29.61% |
29.80% |
HEX | AD | B3 | 7E |
Decimal | 173 | 179 | 126 |
Binary | 10101101 | 10110011 | 1111110 |
Octal | 255 | 263 | 176 |
Examples of css and html codes for elements with #ADB37E color. Also use rgb(173,179,126) instead hex code.
.myTextColor { color: #ADB37E; }
<p style="color:#ADB37E">This sample text font color is #ADB37E.</p>
This text font color is #ADB37E.
.myBgColor { background-color: #ADB37E; }
<div style="background-color:#ADB37E">Inner text</div>
This div background color is #ADB37E.
.myBorderColor { border: 1px solid #ADB37E; }
<div style="border:3px solid #ADB37E">Div</div>
This div border color is #ADB37E.
.myOpacity80 { color: #ADB37E; opacity: 0.8; }
<p style="color:#ADB37E;opacity:0.8;">80%</p>
Text with #ADB37E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB37E;}
<p style="text-shadow: 3px 3px 1px #ADB37E">Text here.</p>
This text has shadow with #ADB37E color.
.textShadow {text-shadow: 3px 3px 1px #ADB37E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB37E, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB37E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB37E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB37E, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB37E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB37E; -webkit-box-shadow: 1px 1px 3px 2px #ADB37E; box-shadow: 1px 1px 3px 2px #ADB37E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB37E; -webkit-box-shadow: 1px 1px 3px 2px #ADB37E; box-shadow:1px 1px 3px 2px #ADB37E;">
Div content here</div>
This text has color #ADB37E on black background.
This text has color #ADB37E on white background.
This text has black color on #ADB37E background.
This text has white color on #ADB37E background.