HEX: #A4B277
RGB: (164,178,119)
#A4B277 contains red, green and blue colors in about the same proportion. Web safe color of #A4B277 is #999966 (or #996).
#A4B277 color RGB value is (164,178,119).
RGB: (164,178,119) (64%,70%,47%)
R 164 of 255 = 64%
G 178 of 255 = 70%
B 119 of 255 = 47%
R + G + B ~ 60%. #A4B277 is middle color (not dark and not light).
R + G + B =
164 + 178 + 119 = 461 (100%)
R 164 of 461 ~ 35.57%
G 178 of 461 ~ 38.61%
B 119 of 461 ~ 25.81%
#A4B277 color CMYK value is (8,0,33,30).
CMYK: (8,0,33,30) C8M0Y33K30 (8%,0%,33%,30%) (0.08/0.00/0.33/0.30)
A4 | B2 | 77 | |
---|---|---|---|
RGB | 164 | 178 | 119 |
HSL | 74° | 27.70% | 58.24% |
HSB/HSV | 74° | 33.15% | 69.80% |
CMYK | 7.87% | 0.00% | 33.15% |
30.20% |
HEX | A4 | B2 | 77 |
Decimal | 164 | 178 | 119 |
Binary | 10100100 | 10110010 | 1110111 |
Octal | 244 | 262 | 167 |
Examples of css and html codes for elements with #A4B277 color. Also use rgb(164,178,119) instead hex code.
.myTextColor { color: #A4B277; }
<p style="color:#A4B277">This sample text font color is #A4B277.</p>
This text font color is #A4B277.
.myBgColor { background-color: #A4B277; }
<div style="background-color:#A4B277">Inner text</div>
This div background color is #A4B277.
.myBorderColor { border: 1px solid #A4B277; }
<div style="border:3px solid #A4B277">Div</div>
This div border color is #A4B277.
.myOpacity80 { color: #A4B277; opacity: 0.8; }
<p style="color:#A4B277;opacity:0.8;">80%</p>
Text with #A4B277 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4B277;}
<p style="text-shadow: 3px 3px 1px #A4B277">Text here.</p>
This text has shadow with #A4B277 color.
.textShadow {text-shadow: 3px 3px 1px #A4B277, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4B277, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4B277 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4B277, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4B277, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4B277 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4B277; -webkit-box-shadow: 1px 1px 3px 2px #A4B277; box-shadow: 1px 1px 3px 2px #A4B277; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4B277; -webkit-box-shadow: 1px 1px 3px 2px #A4B277; box-shadow:1px 1px 3px 2px #A4B277;">
Div content here</div>
This text has color #A4B277 on black background.
This text has color #A4B277 on white background.
This text has black color on #A4B277 background.
This text has white color on #A4B277 background.