HEX: #71C077
RGB: (113,192,119)
#71C077 contains mainly green color. Web safe color of #71C077 is #66CC66 (or #6C6).
#71C077 color RGB value is (113,192,119).
RGB: (113,192,119) (44%,75%,47%)
R 113 of 255 = 44%
G 192 of 255 = 75%
B 119 of 255 = 47%
R + G + B ~ 55%. #71C077 is middle color (not dark and not light).
R + G + B =
113 + 192 + 119 = 424 (100%)
R 113 of 424 ~ 26.65%
G 192 of 424 ~ 45.28%
B 119 of 424 ~ 28.07%
#71C077 color CMYK value is (41,0,38,25).
CMYK: (41,0,38,25) C41M0Y38K25 (41%,0%,38%,25%) (0.41/0.00/0.38/0.25)
71 | C0 | 77 | |
---|---|---|---|
RGB | 113 | 192 | 119 |
HSL | 125° | 38.54% | 59.80% |
HSB/HSV | 125° | 41.15% | 75.29% |
CMYK | 41.15% | 0.00% | 38.02% |
24.71% |
HEX | 71 | C0 | 77 |
Decimal | 113 | 192 | 119 |
Binary | 1110001 | 11000000 | 1110111 |
Octal | 161 | 300 | 167 |
Examples of css and html codes for elements with #71C077 color. Also use rgb(113,192,119) instead hex code.
.myTextColor { color: #71C077; }
<p style="color:#71C077">This sample text font color is #71C077.</p>
This text font color is #71C077.
.myBgColor { background-color: #71C077; }
<div style="background-color:#71C077">Inner text</div>
This div background color is #71C077.
.myBorderColor { border: 1px solid #71C077; }
<div style="border:3px solid #71C077">Div</div>
This div border color is #71C077.
.myOpacity80 { color: #71C077; opacity: 0.8; }
<p style="color:#71C077;opacity:0.8;">80%</p>
Text with #71C077 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71C077;}
<p style="text-shadow: 3px 3px 1px #71C077">Text here.</p>
This text has shadow with #71C077 color.
.textShadow {text-shadow: 3px 3px 1px #71C077, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71C077, 5px 5px 20px red">Text here.</p>
This text has shadow with #71C077 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71C077, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71C077, Direction=45, Strength=4)">Text</p>
This text has shadow with #71C077 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71C077; -webkit-box-shadow: 1px 1px 3px 2px #71C077; box-shadow: 1px 1px 3px 2px #71C077; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71C077; -webkit-box-shadow: 1px 1px 3px 2px #71C077; box-shadow:1px 1px 3px 2px #71C077;">
Div content here</div>
This text has color #71C077 on black background.
This text has color #71C077 on white background.
This text has black color on #71C077 background.
This text has white color on #71C077 background.