HEX: #84B249
RGB: (132,178,73)
#84B249 contains mainly red and green colors. Web safe color of #84B249 is #999933 (or #993).
#84B249 color RGB value is (132,178,73).
RGB: (132,178,73) (52%,70%,29%)
R 132 of 255 = 52%
G 178 of 255 = 70%
B 73 of 255 = 29%
R + G + B ~ 50%. #84B249 is middle color (not dark and not light).
R + G + B =
132 + 178 + 73 = 383 (100%)
R 132 of 383 ~ 34.46%
G 178 of 383 ~ 46.48%
B 73 of 383 ~ 19.06%
#84B249 color CMYK value is (26,0,59,30).
CMYK: (26,0,59,30) C26M0Y59K30 (26%,0%,59%,30%) (0.26/0.00/0.59/0.30)
84 | B2 | 49 | |
---|---|---|---|
RGB | 132 | 178 | 73 |
HSL | 86° | 41.83% | 49.22% |
HSB/HSV | 86° | 58.99% | 69.80% |
CMYK | 25.84% | 0.00% | 58.99% |
30.20% |
HEX | 84 | B2 | 49 |
Decimal | 132 | 178 | 73 |
Binary | 10000100 | 10110010 | 1001001 |
Octal | 204 | 262 | 111 |
Examples of css and html codes for elements with #84B249 color. Also use rgb(132,178,73) instead hex code.
.myTextColor { color: #84B249; }
<p style="color:#84B249">This sample text font color is #84B249.</p>
This text font color is #84B249.
.myBgColor { background-color: #84B249; }
<div style="background-color:#84B249">Inner text</div>
This div background color is #84B249.
.myBorderColor { border: 1px solid #84B249; }
<div style="border:3px solid #84B249">Div</div>
This div border color is #84B249.
.myOpacity80 { color: #84B249; opacity: 0.8; }
<p style="color:#84B249;opacity:0.8;">80%</p>
Text with #84B249 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84B249;}
<p style="text-shadow: 3px 3px 1px #84B249">Text here.</p>
This text has shadow with #84B249 color.
.textShadow {text-shadow: 3px 3px 1px #84B249, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84B249, 5px 5px 20px red">Text here.</p>
This text has shadow with #84B249 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84B249, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84B249, Direction=45, Strength=4)">Text</p>
This text has shadow with #84B249 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84B249; -webkit-box-shadow: 1px 1px 3px 2px #84B249; box-shadow: 1px 1px 3px 2px #84B249; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84B249; -webkit-box-shadow: 1px 1px 3px 2px #84B249; box-shadow:1px 1px 3px 2px #84B249;">
Div content here</div>
This text has color #84B249 on black background.
This text has color #84B249 on white background.
This text has black color on #84B249 background.
This text has white color on #84B249 background.