HEX: #A9B76B
RGB: (169,183,107)
#A9B76B contains mainly red and green colors. Web safe color of #A9B76B is #99CC66 (or #9C6).
#A9B76B color RGB value is (169,183,107).
RGB: (169,183,107) (66%,72%,42%)
R 169 of 255 = 66%
G 183 of 255 = 72%
B 107 of 255 = 42%
R + G + B ~ 60%. #A9B76B is middle color (not dark and not light).
R + G + B =
169 + 183 + 107 = 459 (100%)
R 169 of 459 ~ 36.82%
G 183 of 459 ~ 39.87%
B 107 of 459 ~ 23.31%
#A9B76B color CMYK value is (8,0,42,28).
CMYK: (8,0,42,28) C8M0Y42K28 (8%,0%,42%,28%) (0.08/0.00/0.42/0.28)
A9 | B7 | 6B | |
---|---|---|---|
RGB | 169 | 183 | 107 |
HSL | 71° | 34.55% | 56.86% |
HSB/HSV | 71° | 41.53% | 71.76% |
CMYK | 7.65% | 0.00% | 41.53% |
28.24% |
HEX | A9 | B7 | 6B |
Decimal | 169 | 183 | 107 |
Binary | 10101001 | 10110111 | 1101011 |
Octal | 251 | 267 | 153 |
Examples of css and html codes for elements with #A9B76B color. Also use rgb(169,183,107) instead hex code.
.myTextColor { color: #A9B76B; }
<p style="color:#A9B76B">This sample text font color is #A9B76B.</p>
This text font color is #A9B76B.
.myBgColor { background-color: #A9B76B; }
<div style="background-color:#A9B76B">Inner text</div>
This div background color is #A9B76B.
.myBorderColor { border: 1px solid #A9B76B; }
<div style="border:3px solid #A9B76B">Div</div>
This div border color is #A9B76B.
.myOpacity80 { color: #A9B76B; opacity: 0.8; }
<p style="color:#A9B76B;opacity:0.8;">80%</p>
Text with #A9B76B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9B76B;}
<p style="text-shadow: 3px 3px 1px #A9B76B">Text here.</p>
This text has shadow with #A9B76B color.
.textShadow {text-shadow: 3px 3px 1px #A9B76B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9B76B, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9B76B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9B76B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9B76B, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9B76B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9B76B; -webkit-box-shadow: 1px 1px 3px 2px #A9B76B; box-shadow: 1px 1px 3px 2px #A9B76B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9B76B; -webkit-box-shadow: 1px 1px 3px 2px #A9B76B; box-shadow:1px 1px 3px 2px #A9B76B;">
Div content here</div>
This text has color #A9B76B on black background.
This text has color #A9B76B on white background.
This text has black color on #A9B76B background.
This text has white color on #A9B76B background.