HEX: #84AA59
RGB: (132,170,89)
#84AA59 contains mainly red and green colors. Web safe color of #84AA59 is #999966 (or #996).
#84AA59 color RGB value is (132,170,89).
RGB: (132,170,89) (52%,67%,35%)
R 132 of 255 = 52%
G 170 of 255 = 67%
B 89 of 255 = 35%
R + G + B ~ 51%. #84AA59 is middle color (not dark and not light).
R + G + B =
132 + 170 + 89 = 391 (100%)
R 132 of 391 ~ 33.76%
G 170 of 391 ~ 43.48%
B 89 of 391 ~ 22.76%
#84AA59 color CMYK value is (22,0,48,33).
CMYK: (22,0,48,33) C22M0Y48K33 (22%,0%,48%,33%) (0.22/0.00/0.48/0.33)
84 | AA | 59 | |
---|---|---|---|
RGB | 132 | 170 | 89 |
HSL | 88° | 32.27% | 50.78% |
HSB/HSV | 88° | 47.65% | 66.67% |
CMYK | 22.35% | 0.00% | 47.65% |
33.33% |
HEX | 84 | AA | 59 |
Decimal | 132 | 170 | 89 |
Binary | 10000100 | 10101010 | 1011001 |
Octal | 204 | 252 | 131 |
Examples of css and html codes for elements with #84AA59 color. Also use rgb(132,170,89) instead hex code.
.myTextColor { color: #84AA59; }
<p style="color:#84AA59">This sample text font color is #84AA59.</p>
This text font color is #84AA59.
.myBgColor { background-color: #84AA59; }
<div style="background-color:#84AA59">Inner text</div>
This div background color is #84AA59.
.myBorderColor { border: 1px solid #84AA59; }
<div style="border:3px solid #84AA59">Div</div>
This div border color is #84AA59.
.myOpacity80 { color: #84AA59; opacity: 0.8; }
<p style="color:#84AA59;opacity:0.8;">80%</p>
Text with #84AA59 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84AA59;}
<p style="text-shadow: 3px 3px 1px #84AA59">Text here.</p>
This text has shadow with #84AA59 color.
.textShadow {text-shadow: 3px 3px 1px #84AA59, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84AA59, 5px 5px 20px red">Text here.</p>
This text has shadow with #84AA59 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84AA59, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84AA59, Direction=45, Strength=4)">Text</p>
This text has shadow with #84AA59 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84AA59; -webkit-box-shadow: 1px 1px 3px 2px #84AA59; box-shadow: 1px 1px 3px 2px #84AA59; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84AA59; -webkit-box-shadow: 1px 1px 3px 2px #84AA59; box-shadow:1px 1px 3px 2px #84AA59;">
Div content here</div>
This text has color #84AA59 on black background.
This text has color #84AA59 on white background.
This text has black color on #84AA59 background.
This text has white color on #84AA59 background.