HEX: #71B863
RGB: (113,184,99)
#71B863 contains mainly green color. Web safe color of #71B863 is #66CC66 (or #6C6).
#71B863 color RGB value is (113,184,99).
RGB: (113,184,99) (44%,72%,39%)
R 113 of 255 = 44%
G 184 of 255 = 72%
B 99 of 255 = 39%
R + G + B ~ 52%. #71B863 is middle color (not dark and not light).
R + G + B =
113 + 184 + 99 = 396 (100%)
R 113 of 396 ~ 28.54%
G 184 of 396 ~ 46.46%
B 99 of 396 ~ 25%
#71B863 color CMYK value is (39,0,46,28).
CMYK: (39,0,46,28) C39M0Y46K28 (39%,0%,46%,28%) (0.39/0.00/0.46/0.28)
71 | B8 | 63 | |
---|---|---|---|
RGB | 113 | 184 | 99 |
HSL | 110° | 37.44% | 55.49% |
HSB/HSV | 110° | 46.20% | 72.16% |
CMYK | 38.59% | 0.00% | 46.20% |
27.84% |
HEX | 71 | B8 | 63 |
Decimal | 113 | 184 | 99 |
Binary | 1110001 | 10111000 | 1100011 |
Octal | 161 | 270 | 143 |
Examples of css and html codes for elements with #71B863 color. Also use rgb(113,184,99) instead hex code.
.myTextColor { color: #71B863; }
<p style="color:#71B863">This sample text font color is #71B863.</p>
This text font color is #71B863.
.myBgColor { background-color: #71B863; }
<div style="background-color:#71B863">Inner text</div>
This div background color is #71B863.
.myBorderColor { border: 1px solid #71B863; }
<div style="border:3px solid #71B863">Div</div>
This div border color is #71B863.
.myOpacity80 { color: #71B863; opacity: 0.8; }
<p style="color:#71B863;opacity:0.8;">80%</p>
Text with #71B863 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71B863;}
<p style="text-shadow: 3px 3px 1px #71B863">Text here.</p>
This text has shadow with #71B863 color.
.textShadow {text-shadow: 3px 3px 1px #71B863, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71B863, 5px 5px 20px red">Text here.</p>
This text has shadow with #71B863 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71B863, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71B863, Direction=45, Strength=4)">Text</p>
This text has shadow with #71B863 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71B863; -webkit-box-shadow: 1px 1px 3px 2px #71B863; box-shadow: 1px 1px 3px 2px #71B863; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71B863; -webkit-box-shadow: 1px 1px 3px 2px #71B863; box-shadow:1px 1px 3px 2px #71B863;">
Div content here</div>
This text has color #71B863 on black background.
This text has color #71B863 on white background.
This text has black color on #71B863 background.
This text has white color on #71B863 background.