HEX: #58C961
RGB: (88,201,97)
#58C961 contains mainly green color. Web safe color of #58C961 is #66CC66 (or #6C6).
#58C961 color RGB value is (88,201,97).
RGB: (88,201,97) (35%,79%,38%)
R 88 of 255 = 35%
G 201 of 255 = 79%
B 97 of 255 = 38%
R + G + B ~ 51%. #58C961 is middle color (not dark and not light).
R + G + B =
88 + 201 + 97 = 386 (100%)
R 88 of 386 ~ 22.8%
G 201 of 386 ~ 52.07%
B 97 of 386 ~ 25.13%
#58C961 color CMYK value is (56,0,52,21).
CMYK: (56,0,52,21) C56M0Y52K21 (56%,0%,52%,21%) (0.56/0.00/0.52/0.21)
58 | C9 | 61 | |
---|---|---|---|
RGB | 88 | 201 | 97 |
HSL | 125° | 51.13% | 56.67% |
HSB/HSV | 125° | 56.22% | 78.82% |
CMYK | 56.22% | 0.00% | 51.74% |
21.18% |
HEX | 58 | C9 | 61 |
Decimal | 88 | 201 | 97 |
Binary | 1011000 | 11001001 | 1100001 |
Octal | 130 | 311 | 141 |
Examples of css and html codes for elements with #58C961 color. Also use rgb(88,201,97) instead hex code.
.myTextColor { color: #58C961; }
<p style="color:#58C961">This sample text font color is #58C961.</p>
This text font color is #58C961.
.myBgColor { background-color: #58C961; }
<div style="background-color:#58C961">Inner text</div>
This div background color is #58C961.
.myBorderColor { border: 1px solid #58C961; }
<div style="border:3px solid #58C961">Div</div>
This div border color is #58C961.
.myOpacity80 { color: #58C961; opacity: 0.8; }
<p style="color:#58C961;opacity:0.8;">80%</p>
Text with #58C961 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58C961;}
<p style="text-shadow: 3px 3px 1px #58C961">Text here.</p>
This text has shadow with #58C961 color.
.textShadow {text-shadow: 3px 3px 1px #58C961, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58C961, 5px 5px 20px red">Text here.</p>
This text has shadow with #58C961 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58C961, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58C961, Direction=45, Strength=4)">Text</p>
This text has shadow with #58C961 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58C961; -webkit-box-shadow: 1px 1px 3px 2px #58C961; box-shadow: 1px 1px 3px 2px #58C961; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58C961; -webkit-box-shadow: 1px 1px 3px 2px #58C961; box-shadow:1px 1px 3px 2px #58C961;">
Div content here</div>
This text has color #58C961 on black background.
This text has color #58C961 on white background.
This text has black color on #58C961 background.
This text has white color on #58C961 background.