HEX: #A4B764
RGB: (164,183,100)
#A4B764 contains mainly red and green colors. Web safe color of #A4B764 is #99CC66 (or #9C6).
#A4B764 color RGB value is (164,183,100).
RGB: (164,183,100) (64%,72%,39%)
R 164 of 255 = 64%
G 183 of 255 = 72%
B 100 of 255 = 39%
R + G + B ~ 58%. #A4B764 is middle color (not dark and not light).
R + G + B =
164 + 183 + 100 = 447 (100%)
R 164 of 447 ~ 36.69%
G 183 of 447 ~ 40.94%
B 100 of 447 ~ 22.37%
#A4B764 color CMYK value is (10,0,45,28).
CMYK: (10,0,45,28) C10M0Y45K28 (10%,0%,45%,28%) (0.10/0.00/0.45/0.28)
A4 | B7 | 64 | |
---|---|---|---|
RGB | 164 | 183 | 100 |
HSL | 74° | 36.56% | 55.49% |
HSB/HSV | 74° | 45.36% | 71.76% |
CMYK | 10.38% | 0.00% | 45.36% |
28.24% |
HEX | A4 | B7 | 64 |
Decimal | 164 | 183 | 100 |
Binary | 10100100 | 10110111 | 1100100 |
Octal | 244 | 267 | 144 |
Examples of css and html codes for elements with #A4B764 color. Also use rgb(164,183,100) instead hex code.
.myTextColor { color: #A4B764; }
<p style="color:#A4B764">This sample text font color is #A4B764.</p>
This text font color is #A4B764.
.myBgColor { background-color: #A4B764; }
<div style="background-color:#A4B764">Inner text</div>
This div background color is #A4B764.
.myBorderColor { border: 1px solid #A4B764; }
<div style="border:3px solid #A4B764">Div</div>
This div border color is #A4B764.
.myOpacity80 { color: #A4B764; opacity: 0.8; }
<p style="color:#A4B764;opacity:0.8;">80%</p>
Text with #A4B764 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4B764;}
<p style="text-shadow: 3px 3px 1px #A4B764">Text here.</p>
This text has shadow with #A4B764 color.
.textShadow {text-shadow: 3px 3px 1px #A4B764, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4B764, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4B764 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4B764, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4B764, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4B764 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4B764; -webkit-box-shadow: 1px 1px 3px 2px #A4B764; box-shadow: 1px 1px 3px 2px #A4B764; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4B764; -webkit-box-shadow: 1px 1px 3px 2px #A4B764; box-shadow:1px 1px 3px 2px #A4B764;">
Div content here</div>
This text has color #A4B764 on black background.
This text has color #A4B764 on white background.
This text has black color on #A4B764 background.
This text has white color on #A4B764 background.