HEX: #71B651
RGB: (113,182,81)
#71B651 contains mainly green color. Web safe color of #71B651 is #66CC66 (or #6C6).
#71B651 color RGB value is (113,182,81).
RGB: (113,182,81) (44%,71%,32%)
R 113 of 255 = 44%
G 182 of 255 = 71%
B 81 of 255 = 32%
R + G + B ~ 49%. #71B651 is middle color (not dark and not light).
R + G + B =
113 + 182 + 81 = 376 (100%)
R 113 of 376 ~ 30.05%
G 182 of 376 ~ 48.4%
B 81 of 376 ~ 21.54%
#71B651 color CMYK value is (38,0,55,29).
CMYK: (38,0,55,29) C38M0Y55K29 (38%,0%,55%,29%) (0.38/0.00/0.55/0.29)
71 | B6 | 51 | |
---|---|---|---|
RGB | 113 | 182 | 81 |
HSL | 101° | 40.89% | 51.57% |
HSB/HSV | 101° | 55.49% | 71.37% |
CMYK | 37.91% | 0.00% | 55.49% |
28.63% |
HEX | 71 | B6 | 51 |
Decimal | 113 | 182 | 81 |
Binary | 1110001 | 10110110 | 1010001 |
Octal | 161 | 266 | 121 |
Examples of css and html codes for elements with #71B651 color. Also use rgb(113,182,81) instead hex code.
.myTextColor { color: #71B651; }
<p style="color:#71B651">This sample text font color is #71B651.</p>
This text font color is #71B651.
.myBgColor { background-color: #71B651; }
<div style="background-color:#71B651">Inner text</div>
This div background color is #71B651.
.myBorderColor { border: 1px solid #71B651; }
<div style="border:3px solid #71B651">Div</div>
This div border color is #71B651.
.myOpacity80 { color: #71B651; opacity: 0.8; }
<p style="color:#71B651;opacity:0.8;">80%</p>
Text with #71B651 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71B651;}
<p style="text-shadow: 3px 3px 1px #71B651">Text here.</p>
This text has shadow with #71B651 color.
.textShadow {text-shadow: 3px 3px 1px #71B651, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71B651, 5px 5px 20px red">Text here.</p>
This text has shadow with #71B651 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71B651, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71B651, Direction=45, Strength=4)">Text</p>
This text has shadow with #71B651 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71B651; -webkit-box-shadow: 1px 1px 3px 2px #71B651; box-shadow: 1px 1px 3px 2px #71B651; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71B651; -webkit-box-shadow: 1px 1px 3px 2px #71B651; box-shadow:1px 1px 3px 2px #71B651;">
Div content here</div>
This text has color #71B651 on black background.
This text has color #71B651 on white background.
This text has black color on #71B651 background.
This text has white color on #71B651 background.