HEX: #A4B472
RGB: (164,180,114)
#A4B472 contains mainly red and green colors. Web safe color of #A4B472 is #99CC66 (or #9C6).
#A4B472 color RGB value is (164,180,114).
RGB: (164,180,114) (64%,71%,45%)
R 164 of 255 = 64%
G 180 of 255 = 71%
B 114 of 255 = 45%
R + G + B ~ 60%. #A4B472 is middle color (not dark and not light).
R + G + B =
164 + 180 + 114 = 458 (100%)
R 164 of 458 ~ 35.81%
G 180 of 458 ~ 39.3%
B 114 of 458 ~ 24.89%
#A4B472 color CMYK value is (9,0,37,29).
CMYK: (9,0,37,29) C9M0Y37K29 (9%,0%,37%,29%) (0.09/0.00/0.37/0.29)
A4 | B4 | 72 | |
---|---|---|---|
RGB | 164 | 180 | 114 |
HSL | 75° | 30.56% | 57.65% |
HSB/HSV | 75° | 36.67% | 70.59% |
CMYK | 8.89% | 0.00% | 36.67% |
29.41% |
HEX | A4 | B4 | 72 |
Decimal | 164 | 180 | 114 |
Binary | 10100100 | 10110100 | 1110010 |
Octal | 244 | 264 | 162 |
Examples of css and html codes for elements with #A4B472 color. Also use rgb(164,180,114) instead hex code.
.myTextColor { color: #A4B472; }
<p style="color:#A4B472">This sample text font color is #A4B472.</p>
This text font color is #A4B472.
.myBgColor { background-color: #A4B472; }
<div style="background-color:#A4B472">Inner text</div>
This div background color is #A4B472.
.myBorderColor { border: 1px solid #A4B472; }
<div style="border:3px solid #A4B472">Div</div>
This div border color is #A4B472.
.myOpacity80 { color: #A4B472; opacity: 0.8; }
<p style="color:#A4B472;opacity:0.8;">80%</p>
Text with #A4B472 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4B472;}
<p style="text-shadow: 3px 3px 1px #A4B472">Text here.</p>
This text has shadow with #A4B472 color.
.textShadow {text-shadow: 3px 3px 1px #A4B472, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4B472, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4B472 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4B472, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4B472, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4B472 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4B472; -webkit-box-shadow: 1px 1px 3px 2px #A4B472; box-shadow: 1px 1px 3px 2px #A4B472; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4B472; -webkit-box-shadow: 1px 1px 3px 2px #A4B472; box-shadow:1px 1px 3px 2px #A4B472;">
Div content here</div>
This text has color #A4B472 on black background.
This text has color #A4B472 on white background.
This text has black color on #A4B472 background.
This text has white color on #A4B472 background.