HEX: #71D270
RGB: (113,210,112)
#71D270 contains mainly green color. Web safe color of #71D270 is #66CC66 (or #6C6).
#71D270 color RGB value is (113,210,112).
RGB: (113,210,112) (44%,82%,44%)
R 113 of 255 = 44%
G 210 of 255 = 82%
B 112 of 255 = 44%
R + G + B ~ 57%. #71D270 is middle color (not dark and not light).
R + G + B =
113 + 210 + 112 = 435 (100%)
R 113 of 435 ~ 25.98%
G 210 of 435 ~ 48.28%
B 112 of 435 ~ 25.75%
#71D270 color CMYK value is (46,0,47,18).
CMYK: (46,0,47,18) C46M0Y47K18 (46%,0%,47%,18%) (0.46/0.00/0.47/0.18)
71 | D2 | 70 | |
---|---|---|---|
RGB | 113 | 210 | 112 |
HSL | 119° | 52.13% | 63.14% |
HSB/HSV | 119° | 46.67% | 82.35% |
CMYK | 46.19% | 0.00% | 46.67% |
17.65% |
HEX | 71 | D2 | 70 |
Decimal | 113 | 210 | 112 |
Binary | 1110001 | 11010010 | 1110000 |
Octal | 161 | 322 | 160 |
Examples of css and html codes for elements with #71D270 color. Also use rgb(113,210,112) instead hex code.
.myTextColor { color: #71D270; }
<p style="color:#71D270">This sample text font color is #71D270.</p>
This text font color is #71D270.
.myBgColor { background-color: #71D270; }
<div style="background-color:#71D270">Inner text</div>
This div background color is #71D270.
.myBorderColor { border: 1px solid #71D270; }
<div style="border:3px solid #71D270">Div</div>
This div border color is #71D270.
.myOpacity80 { color: #71D270; opacity: 0.8; }
<p style="color:#71D270;opacity:0.8;">80%</p>
Text with #71D270 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71D270;}
<p style="text-shadow: 3px 3px 1px #71D270">Text here.</p>
This text has shadow with #71D270 color.
.textShadow {text-shadow: 3px 3px 1px #71D270, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71D270, 5px 5px 20px red">Text here.</p>
This text has shadow with #71D270 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71D270, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71D270, Direction=45, Strength=4)">Text</p>
This text has shadow with #71D270 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71D270; -webkit-box-shadow: 1px 1px 3px 2px #71D270; box-shadow: 1px 1px 3px 2px #71D270; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71D270; -webkit-box-shadow: 1px 1px 3px 2px #71D270; box-shadow:1px 1px 3px 2px #71D270;">
Div content here</div>
This text has color #71D270 on black background.
This text has color #71D270 on white background.
This text has black color on #71D270 background.
This text has white color on #71D270 background.