HEX: #A5AD6B
RGB: (165,173,107)
#A5AD6B contains mainly red and green colors. Web safe color of #A5AD6B is #999966 (or #996).
#A5AD6B color RGB value is (165,173,107).
RGB: (165,173,107) (65%,68%,42%)
R 165 of 255 = 65%
G 173 of 255 = 68%
B 107 of 255 = 42%
R + G + B ~ 58%. #A5AD6B is middle color (not dark and not light).
R + G + B =
165 + 173 + 107 = 445 (100%)
R 165 of 445 ~ 37.08%
G 173 of 445 ~ 38.88%
B 107 of 445 ~ 24.04%
#A5AD6B color CMYK value is (5,0,38,32).
CMYK: (5,0,38,32) C5M0Y38K32 (5%,0%,38%,32%) (0.05/0.00/0.38/0.32)
A5 | AD | 6B | |
---|---|---|---|
RGB | 165 | 173 | 107 |
HSL | 67° | 28.70% | 54.90% |
HSB/HSV | 67° | 38.15% | 67.84% |
CMYK | 4.62% | 0.00% | 38.15% |
32.16% |
HEX | A5 | AD | 6B |
Decimal | 165 | 173 | 107 |
Binary | 10100101 | 10101101 | 1101011 |
Octal | 245 | 255 | 153 |
Examples of css and html codes for elements with #A5AD6B color. Also use rgb(165,173,107) instead hex code.
.myTextColor { color: #A5AD6B; }
<p style="color:#A5AD6B">This sample text font color is #A5AD6B.</p>
This text font color is #A5AD6B.
.myBgColor { background-color: #A5AD6B; }
<div style="background-color:#A5AD6B">Inner text</div>
This div background color is #A5AD6B.
.myBorderColor { border: 1px solid #A5AD6B; }
<div style="border:3px solid #A5AD6B">Div</div>
This div border color is #A5AD6B.
.myOpacity80 { color: #A5AD6B; opacity: 0.8; }
<p style="color:#A5AD6B;opacity:0.8;">80%</p>
Text with #A5AD6B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5AD6B;}
<p style="text-shadow: 3px 3px 1px #A5AD6B">Text here.</p>
This text has shadow with #A5AD6B color.
.textShadow {text-shadow: 3px 3px 1px #A5AD6B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5AD6B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5AD6B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5AD6B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5AD6B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5AD6B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5AD6B; -webkit-box-shadow: 1px 1px 3px 2px #A5AD6B; box-shadow: 1px 1px 3px 2px #A5AD6B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5AD6B; -webkit-box-shadow: 1px 1px 3px 2px #A5AD6B; box-shadow:1px 1px 3px 2px #A5AD6B;">
Div content here</div>
This text has color #A5AD6B on black background.
This text has color #A5AD6B on white background.
This text has black color on #A5AD6B background.
This text has white color on #A5AD6B background.