HEX: #A9AB5B
RGB: (169,171,91)
#A9AB5B contains mainly red and green colors. Web safe color of #A9AB5B is #999966 (or #996).
#A9AB5B color RGB value is (169,171,91).
RGB: (169,171,91) (66%,67%,36%)
R 169 of 255 = 66%
G 171 of 255 = 67%
B 91 of 255 = 36%
R + G + B ~ 56%. #A9AB5B is middle color (not dark and not light).
R + G + B =
169 + 171 + 91 = 431 (100%)
R 169 of 431 ~ 39.21%
G 171 of 431 ~ 39.68%
B 91 of 431 ~ 21.11%
#A9AB5B color CMYK value is (1,0,47,33).
CMYK: (1,0,47,33) C1M0Y47K33 (1%,0%,47%,33%) (0.01/0.00/0.47/0.33)
A9 | AB | 5B | |
---|---|---|---|
RGB | 169 | 171 | 91 |
HSL | 62° | 32.26% | 51.37% |
HSB/HSV | 62° | 46.78% | 67.06% |
CMYK | 1.17% | 0.00% | 46.78% |
32.94% |
HEX | A9 | AB | 5B |
Decimal | 169 | 171 | 91 |
Binary | 10101001 | 10101011 | 1011011 |
Octal | 251 | 253 | 133 |
Examples of css and html codes for elements with #A9AB5B color. Also use rgb(169,171,91) instead hex code.
.myTextColor { color: #A9AB5B; }
<p style="color:#A9AB5B">This sample text font color is #A9AB5B.</p>
This text font color is #A9AB5B.
.myBgColor { background-color: #A9AB5B; }
<div style="background-color:#A9AB5B">Inner text</div>
This div background color is #A9AB5B.
.myBorderColor { border: 1px solid #A9AB5B; }
<div style="border:3px solid #A9AB5B">Div</div>
This div border color is #A9AB5B.
.myOpacity80 { color: #A9AB5B; opacity: 0.8; }
<p style="color:#A9AB5B;opacity:0.8;">80%</p>
Text with #A9AB5B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9AB5B;}
<p style="text-shadow: 3px 3px 1px #A9AB5B">Text here.</p>
This text has shadow with #A9AB5B color.
.textShadow {text-shadow: 3px 3px 1px #A9AB5B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9AB5B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9AB5B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9AB5B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9AB5B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9AB5B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9AB5B; -webkit-box-shadow: 1px 1px 3px 2px #A9AB5B; box-shadow: 1px 1px 3px 2px #A9AB5B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9AB5B; -webkit-box-shadow: 1px 1px 3px 2px #A9AB5B; box-shadow:1px 1px 3px 2px #A9AB5B;">
Div content here</div>
This text has color #A9AB5B on black background.
This text has color #A9AB5B on white background.
This text has black color on #A9AB5B background.
This text has white color on #A9AB5B background.