HEX: #A5AA7B
RGB: (165,170,123)
#A5AA7B contains red, green and blue colors in about the same proportion. Web safe color of #A5AA7B is #999966 (or #996).
#A5AA7B color RGB value is (165,170,123).
RGB: (165,170,123) (65%,67%,48%)
R 165 of 255 = 65%
G 170 of 255 = 67%
B 123 of 255 = 48%
R + G + B ~ 60%. #A5AA7B is middle color (not dark and not light).
R + G + B =
165 + 170 + 123 = 458 (100%)
R 165 of 458 ~ 36.03%
G 170 of 458 ~ 37.12%
B 123 of 458 ~ 26.86%
#A5AA7B color CMYK value is (3,0,28,33).
CMYK: (3,0,28,33) C3M0Y28K33 (3%,0%,28%,33%) (0.03/0.00/0.28/0.33)
A5 | AA | 7B | |
---|---|---|---|
RGB | 165 | 170 | 123 |
HSL | 66° | 21.66% | 57.45% |
HSB/HSV | 66° | 27.65% | 66.67% |
CMYK | 2.94% | 0.00% | 27.65% |
33.33% |
HEX | A5 | AA | 7B |
Decimal | 165 | 170 | 123 |
Binary | 10100101 | 10101010 | 1111011 |
Octal | 245 | 252 | 173 |
Examples of css and html codes for elements with #A5AA7B color. Also use rgb(165,170,123) instead hex code.
.myTextColor { color: #A5AA7B; }
<p style="color:#A5AA7B">This sample text font color is #A5AA7B.</p>
This text font color is #A5AA7B.
.myBgColor { background-color: #A5AA7B; }
<div style="background-color:#A5AA7B">Inner text</div>
This div background color is #A5AA7B.
.myBorderColor { border: 1px solid #A5AA7B; }
<div style="border:3px solid #A5AA7B">Div</div>
This div border color is #A5AA7B.
.myOpacity80 { color: #A5AA7B; opacity: 0.8; }
<p style="color:#A5AA7B;opacity:0.8;">80%</p>
Text with #A5AA7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5AA7B;}
<p style="text-shadow: 3px 3px 1px #A5AA7B">Text here.</p>
This text has shadow with #A5AA7B color.
.textShadow {text-shadow: 3px 3px 1px #A5AA7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5AA7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5AA7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5AA7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5AA7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5AA7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5AA7B; -webkit-box-shadow: 1px 1px 3px 2px #A5AA7B; box-shadow: 1px 1px 3px 2px #A5AA7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5AA7B; -webkit-box-shadow: 1px 1px 3px 2px #A5AA7B; box-shadow:1px 1px 3px 2px #A5AA7B;">
Div content here</div>
This text has color #A5AA7B on black background.
This text has color #A5AA7B on white background.
This text has black color on #A5AA7B background.
This text has white color on #A5AA7B background.