HEX: #84AD4B
RGB: (132,173,75)
#84AD4B contains mainly red and green colors. Web safe color of #84AD4B is #999933 (or #993).
#84AD4B color RGB value is (132,173,75).
RGB: (132,173,75) (52%,68%,29%)
R 132 of 255 = 52%
G 173 of 255 = 68%
B 75 of 255 = 29%
R + G + B ~ 50%. #84AD4B is middle color (not dark and not light).
R + G + B =
132 + 173 + 75 = 380 (100%)
R 132 of 380 ~ 34.74%
G 173 of 380 ~ 45.53%
B 75 of 380 ~ 19.74%
#84AD4B color CMYK value is (24,0,57,32).
CMYK: (24,0,57,32) C24M0Y57K32 (24%,0%,57%,32%) (0.24/0.00/0.57/0.32)
84 | AD | 4B | |
---|---|---|---|
RGB | 132 | 173 | 75 |
HSL | 85° | 39.52% | 48.63% |
HSB/HSV | 85° | 56.65% | 67.84% |
CMYK | 23.70% | 0.00% | 56.65% |
32.16% |
HEX | 84 | AD | 4B |
Decimal | 132 | 173 | 75 |
Binary | 10000100 | 10101101 | 1001011 |
Octal | 204 | 255 | 113 |
Examples of css and html codes for elements with #84AD4B color. Also use rgb(132,173,75) instead hex code.
.myTextColor { color: #84AD4B; }
<p style="color:#84AD4B">This sample text font color is #84AD4B.</p>
This text font color is #84AD4B.
.myBgColor { background-color: #84AD4B; }
<div style="background-color:#84AD4B">Inner text</div>
This div background color is #84AD4B.
.myBorderColor { border: 1px solid #84AD4B; }
<div style="border:3px solid #84AD4B">Div</div>
This div border color is #84AD4B.
.myOpacity80 { color: #84AD4B; opacity: 0.8; }
<p style="color:#84AD4B;opacity:0.8;">80%</p>
Text with #84AD4B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84AD4B;}
<p style="text-shadow: 3px 3px 1px #84AD4B">Text here.</p>
This text has shadow with #84AD4B color.
.textShadow {text-shadow: 3px 3px 1px #84AD4B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84AD4B, 5px 5px 20px red">Text here.</p>
This text has shadow with #84AD4B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84AD4B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84AD4B, Direction=45, Strength=4)">Text</p>
This text has shadow with #84AD4B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84AD4B; -webkit-box-shadow: 1px 1px 3px 2px #84AD4B; box-shadow: 1px 1px 3px 2px #84AD4B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84AD4B; -webkit-box-shadow: 1px 1px 3px 2px #84AD4B; box-shadow:1px 1px 3px 2px #84AD4B;">
Div content here</div>
This text has color #84AD4B on black background.
This text has color #84AD4B on white background.
This text has black color on #84AD4B background.
This text has white color on #84AD4B background.