HEX: #84DB7F
RGB: (132,219,127)
#84DB7F contains mainly green color. Web safe color of #84DB7F is #99CC66 (or #9C6).
#84DB7F color RGB value is (132,219,127).
RGB: (132,219,127) (52%,86%,50%)
R 132 of 255 = 52%
G 219 of 255 = 86%
B 127 of 255 = 50%
R + G + B ~ 63%. #84DB7F is quite light color.
R + G + B =
132 + 219 + 127 = 478 (100%)
R 132 of 478 ~ 27.62%
G 219 of 478 ~ 45.82%
B 127 of 478 ~ 26.57%
#84DB7F color CMYK value is (40,0,42,14).
CMYK: (40,0,42,14) C40M0Y42K14 (40%,0%,42%,14%) (0.40/0.00/0.42/0.14)
84 | DB | 7F | |
---|---|---|---|
RGB | 132 | 219 | 127 |
HSL | 117° | 56.10% | 67.84% |
HSB/HSV | 117° | 42.01% | 85.88% |
CMYK | 39.73% | 0.00% | 42.01% |
14.12% |
HEX | 84 | DB | 7F |
Decimal | 132 | 219 | 127 |
Binary | 10000100 | 11011011 | 1111111 |
Octal | 204 | 333 | 177 |
Examples of css and html codes for elements with #84DB7F color. Also use rgb(132,219,127) instead hex code.
.myTextColor { color: #84DB7F; }
<p style="color:#84DB7F">This sample text font color is #84DB7F.</p>
This text font color is #84DB7F.
.myBgColor { background-color: #84DB7F; }
<div style="background-color:#84DB7F">Inner text</div>
This div background color is #84DB7F.
.myBorderColor { border: 1px solid #84DB7F; }
<div style="border:3px solid #84DB7F">Div</div>
This div border color is #84DB7F.
.myOpacity80 { color: #84DB7F; opacity: 0.8; }
<p style="color:#84DB7F;opacity:0.8;">80%</p>
Text with #84DB7F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84DB7F;}
<p style="text-shadow: 3px 3px 1px #84DB7F">Text here.</p>
This text has shadow with #84DB7F color.
.textShadow {text-shadow: 3px 3px 1px #84DB7F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84DB7F, 5px 5px 20px red">Text here.</p>
This text has shadow with #84DB7F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84DB7F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84DB7F, Direction=45, Strength=4)">Text</p>
This text has shadow with #84DB7F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84DB7F; -webkit-box-shadow: 1px 1px 3px 2px #84DB7F; box-shadow: 1px 1px 3px 2px #84DB7F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84DB7F; -webkit-box-shadow: 1px 1px 3px 2px #84DB7F; box-shadow:1px 1px 3px 2px #84DB7F;">
Div content here</div>
This text has color #84DB7F on black background.
This text has color #84DB7F on white background.
This text has black color on #84DB7F background.
This text has white color on #84DB7F background.