HEX: #58C713
RGB: (88,199,19)
#58C713 contains mainly green color. Web safe color of #58C713 is #66CC00 (or #6C0).
#58C713 color RGB value is (88,199,19).
RGB: (88,199,19) (35%,78%,7%)
R 88 of 255 = 35%
G 199 of 255 = 78%
B 19 of 255 = 7%
R + G + B ~ 40%. #58C713 is middle color (not dark and not light).
R + G + B =
88 + 199 + 19 = 306 (100%)
R 88 of 306 ~ 28.76%
G 199 of 306 ~ 65.03%
B 19 of 306 ~ 6.21%
#58C713 color CMYK value is (56,0,90,22).
CMYK: (56,0,90,22) C56M0Y90K22 (56%,0%,90%,22%) (0.56/0.00/0.90/0.22)
58 | C7 | 13 | |
---|---|---|---|
RGB | 88 | 199 | 19 |
HSL | 97° | 82.57% | 42.75% |
HSB/HSV | 97° | 90.45% | 78.04% |
CMYK | 55.78% | 0.00% | 90.45% |
21.96% |
HEX | 58 | C7 | 13 |
Decimal | 88 | 199 | 19 |
Binary | 1011000 | 11000111 | 10011 |
Octal | 130 | 307 | 23 |
Examples of css and html codes for elements with #58C713 color. Also use rgb(88,199,19) instead hex code.
.myTextColor { color: #58C713; }
<p style="color:#58C713">This sample text font color is #58C713.</p>
This text font color is #58C713.
.myBgColor { background-color: #58C713; }
<div style="background-color:#58C713">Inner text</div>
This div background color is #58C713.
.myBorderColor { border: 1px solid #58C713; }
<div style="border:3px solid #58C713">Div</div>
This div border color is #58C713.
.myOpacity80 { color: #58C713; opacity: 0.8; }
<p style="color:#58C713;opacity:0.8;">80%</p>
Text with #58C713 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58C713;}
<p style="text-shadow: 3px 3px 1px #58C713">Text here.</p>
This text has shadow with #58C713 color.
.textShadow {text-shadow: 3px 3px 1px #58C713, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58C713, 5px 5px 20px red">Text here.</p>
This text has shadow with #58C713 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58C713, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58C713, Direction=45, Strength=4)">Text</p>
This text has shadow with #58C713 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58C713; -webkit-box-shadow: 1px 1px 3px 2px #58C713; box-shadow: 1px 1px 3px 2px #58C713; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58C713; -webkit-box-shadow: 1px 1px 3px 2px #58C713; box-shadow:1px 1px 3px 2px #58C713;">
Div content here</div>
This text has color #58C713 on black background.
This text has color #58C713 on white background.
This text has black color on #58C713 background.
This text has white color on #58C713 background.