HEX: #71D855
RGB: (113,216,85)
#71D855 contains mainly green color. Web safe color of #71D855 is #66CC66 (or #6C6).
#71D855 color RGB value is (113,216,85).
RGB: (113,216,85) (44%,85%,33%)
R 113 of 255 = 44%
G 216 of 255 = 85%
B 85 of 255 = 33%
R + G + B ~ 54%. #71D855 is middle color (not dark and not light).
R + G + B =
113 + 216 + 85 = 414 (100%)
R 113 of 414 ~ 27.29%
G 216 of 414 ~ 52.17%
B 85 of 414 ~ 20.53%
#71D855 color CMYK value is (48,0,61,15).
CMYK: (48,0,61,15) C48M0Y61K15 (48%,0%,61%,15%) (0.48/0.00/0.61/0.15)
71 | D8 | 55 | |
---|---|---|---|
RGB | 113 | 216 | 85 |
HSL | 107° | 62.68% | 59.02% |
HSB/HSV | 107° | 60.65% | 84.71% |
CMYK | 47.69% | 0.00% | 60.65% |
15.29% |
HEX | 71 | D8 | 55 |
Decimal | 113 | 216 | 85 |
Binary | 1110001 | 11011000 | 1010101 |
Octal | 161 | 330 | 125 |
Examples of css and html codes for elements with #71D855 color. Also use rgb(113,216,85) instead hex code.
.myTextColor { color: #71D855; }
<p style="color:#71D855">This sample text font color is #71D855.</p>
This text font color is #71D855.
.myBgColor { background-color: #71D855; }
<div style="background-color:#71D855">Inner text</div>
This div background color is #71D855.
.myBorderColor { border: 1px solid #71D855; }
<div style="border:3px solid #71D855">Div</div>
This div border color is #71D855.
.myOpacity80 { color: #71D855; opacity: 0.8; }
<p style="color:#71D855;opacity:0.8;">80%</p>
Text with #71D855 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71D855;}
<p style="text-shadow: 3px 3px 1px #71D855">Text here.</p>
This text has shadow with #71D855 color.
.textShadow {text-shadow: 3px 3px 1px #71D855, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71D855, 5px 5px 20px red">Text here.</p>
This text has shadow with #71D855 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71D855, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71D855, Direction=45, Strength=4)">Text</p>
This text has shadow with #71D855 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71D855; -webkit-box-shadow: 1px 1px 3px 2px #71D855; box-shadow: 1px 1px 3px 2px #71D855; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71D855; -webkit-box-shadow: 1px 1px 3px 2px #71D855; box-shadow:1px 1px 3px 2px #71D855;">
Div content here</div>
This text has color #71D855 on black background.
This text has color #71D855 on white background.
This text has black color on #71D855 background.
This text has white color on #71D855 background.