HEX: #ADB87D
RGB: (173,184,125)
#ADB87D contains red, green and blue colors in about the same proportion. Web safe color of #ADB87D is #99CC66 (or #9C6).
#ADB87D color RGB value is (173,184,125).
RGB: (173,184,125) (68%,72%,49%)
R 173 of 255 = 68%
G 184 of 255 = 72%
B 125 of 255 = 49%
R + G + B ~ 63%. #ADB87D is quite light color.
R + G + B =
173 + 184 + 125 = 482 (100%)
R 173 of 482 ~ 35.89%
G 184 of 482 ~ 38.17%
B 125 of 482 ~ 25.93%
#ADB87D color CMYK value is (6,0,32,28).
CMYK: (6,0,32,28) C6M0Y32K28 (6%,0%,32%,28%) (0.06/0.00/0.32/0.28)
AD | B8 | 7D | |
---|---|---|---|
RGB | 173 | 184 | 125 |
HSL | 71° | 29.35% | 60.59% |
HSB/HSV | 71° | 32.07% | 72.16% |
CMYK | 5.98% | 0.00% | 32.07% |
27.84% |
HEX | AD | B8 | 7D |
Decimal | 173 | 184 | 125 |
Binary | 10101101 | 10111000 | 1111101 |
Octal | 255 | 270 | 175 |
Examples of css and html codes for elements with #ADB87D color. Also use rgb(173,184,125) instead hex code.
.myTextColor { color: #ADB87D; }
<p style="color:#ADB87D">This sample text font color is #ADB87D.</p>
This text font color is #ADB87D.
.myBgColor { background-color: #ADB87D; }
<div style="background-color:#ADB87D">Inner text</div>
This div background color is #ADB87D.
.myBorderColor { border: 1px solid #ADB87D; }
<div style="border:3px solid #ADB87D">Div</div>
This div border color is #ADB87D.
.myOpacity80 { color: #ADB87D; opacity: 0.8; }
<p style="color:#ADB87D;opacity:0.8;">80%</p>
Text with #ADB87D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB87D;}
<p style="text-shadow: 3px 3px 1px #ADB87D">Text here.</p>
This text has shadow with #ADB87D color.
.textShadow {text-shadow: 3px 3px 1px #ADB87D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB87D, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB87D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB87D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB87D, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB87D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB87D; -webkit-box-shadow: 1px 1px 3px 2px #ADB87D; box-shadow: 1px 1px 3px 2px #ADB87D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB87D; -webkit-box-shadow: 1px 1px 3px 2px #ADB87D; box-shadow:1px 1px 3px 2px #ADB87D;">
Div content here</div>
This text has color #ADB87D on black background.
This text has color #ADB87D on white background.
This text has black color on #ADB87D background.
This text has white color on #ADB87D background.