HEX: #71B60B
RGB: (113,182,11)
#71B60B contains mainly green color. Web safe color of #71B60B is #66CC00 (or #6C0).
#71B60B color RGB value is (113,182,11).
RGB: (113,182,11) (44%,71%,4%)
R 113 of 255 = 44%
G 182 of 255 = 71%
B 11 of 255 = 4%
R + G + B ~ 40%. #71B60B is middle color (not dark and not light).
R + G + B =
113 + 182 + 11 = 306 (100%)
R 113 of 306 ~ 36.93%
G 182 of 306 ~ 59.48%
B 11 of 306 ~ 3.59%
#71B60B color CMYK value is (38,0,94,29).
CMYK: (38,0,94,29) C38M0Y94K29 (38%,0%,94%,29%) (0.38/0.00/0.94/0.29)
71 | B6 | 0B | |
---|---|---|---|
RGB | 113 | 182 | 11 |
HSL | 84° | 88.60% | 37.84% |
HSB/HSV | 84° | 93.96% | 71.37% |
CMYK | 37.91% | 0.00% | 93.96% |
28.63% |
HEX | 71 | B6 | 0B |
Decimal | 113 | 182 | 11 |
Binary | 1110001 | 10110110 | 1011 |
Octal | 161 | 266 | 13 |
Examples of css and html codes for elements with #71B60B color. Also use rgb(113,182,11) instead hex code.
.myTextColor { color: #71B60B; }
<p style="color:#71B60B">This sample text font color is #71B60B.</p>
This text font color is #71B60B.
.myBgColor { background-color: #71B60B; }
<div style="background-color:#71B60B">Inner text</div>
This div background color is #71B60B.
.myBorderColor { border: 1px solid #71B60B; }
<div style="border:3px solid #71B60B">Div</div>
This div border color is #71B60B.
.myOpacity80 { color: #71B60B; opacity: 0.8; }
<p style="color:#71B60B;opacity:0.8;">80%</p>
Text with #71B60B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71B60B;}
<p style="text-shadow: 3px 3px 1px #71B60B">Text here.</p>
This text has shadow with #71B60B color.
.textShadow {text-shadow: 3px 3px 1px #71B60B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71B60B, 5px 5px 20px red">Text here.</p>
This text has shadow with #71B60B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71B60B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71B60B, Direction=45, Strength=4)">Text</p>
This text has shadow with #71B60B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71B60B; -webkit-box-shadow: 1px 1px 3px 2px #71B60B; box-shadow: 1px 1px 3px 2px #71B60B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71B60B; -webkit-box-shadow: 1px 1px 3px 2px #71B60B; box-shadow:1px 1px 3px 2px #71B60B;">
Div content here</div>
This text has color #71B60B on black background.
This text has color #71B60B on white background.
This text has black color on #71B60B background.
This text has white color on #71B60B background.