HEX: #84CF73
RGB: (132,207,115)
#84CF73 contains mainly green color. Web safe color of #84CF73 is #99CC66 (or #9C6).
#84CF73 color RGB value is (132,207,115).
RGB: (132,207,115) (52%,81%,45%)
R 132 of 255 = 52%
G 207 of 255 = 81%
B 115 of 255 = 45%
R + G + B ~ 59%. #84CF73 is middle color (not dark and not light).
R + G + B =
132 + 207 + 115 = 454 (100%)
R 132 of 454 ~ 29.07%
G 207 of 454 ~ 45.59%
B 115 of 454 ~ 25.33%
#84CF73 color CMYK value is (36,0,44,19).
CMYK: (36,0,44,19) C36M0Y44K19 (36%,0%,44%,19%) (0.36/0.00/0.44/0.19)
84 | CF | 73 | |
---|---|---|---|
RGB | 132 | 207 | 115 |
HSL | 109° | 48.94% | 63.14% |
HSB/HSV | 109° | 44.44% | 81.18% |
CMYK | 36.23% | 0.00% | 44.44% |
18.82% |
HEX | 84 | CF | 73 |
Decimal | 132 | 207 | 115 |
Binary | 10000100 | 11001111 | 1110011 |
Octal | 204 | 317 | 163 |
Examples of css and html codes for elements with #84CF73 color. Also use rgb(132,207,115) instead hex code.
.myTextColor { color: #84CF73; }
<p style="color:#84CF73">This sample text font color is #84CF73.</p>
This text font color is #84CF73.
.myBgColor { background-color: #84CF73; }
<div style="background-color:#84CF73">Inner text</div>
This div background color is #84CF73.
.myBorderColor { border: 1px solid #84CF73; }
<div style="border:3px solid #84CF73">Div</div>
This div border color is #84CF73.
.myOpacity80 { color: #84CF73; opacity: 0.8; }
<p style="color:#84CF73;opacity:0.8;">80%</p>
Text with #84CF73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84CF73;}
<p style="text-shadow: 3px 3px 1px #84CF73">Text here.</p>
This text has shadow with #84CF73 color.
.textShadow {text-shadow: 3px 3px 1px #84CF73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84CF73, 5px 5px 20px red">Text here.</p>
This text has shadow with #84CF73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84CF73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84CF73, Direction=45, Strength=4)">Text</p>
This text has shadow with #84CF73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84CF73; -webkit-box-shadow: 1px 1px 3px 2px #84CF73; box-shadow: 1px 1px 3px 2px #84CF73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84CF73; -webkit-box-shadow: 1px 1px 3px 2px #84CF73; box-shadow:1px 1px 3px 2px #84CF73;">
Div content here</div>
This text has color #84CF73 on black background.
This text has color #84CF73 on white background.
This text has black color on #84CF73 background.
This text has white color on #84CF73 background.