HEX: #58CA7F
RGB: (88,202,127)
#58CA7F contains mainly green color. Web safe color of #58CA7F is #66CC66 (or #6C6).
#58CA7F color RGB value is (88,202,127).
RGB: (88,202,127) (35%,79%,50%)
R 88 of 255 = 35%
G 202 of 255 = 79%
B 127 of 255 = 50%
R + G + B ~ 55%. #58CA7F is middle color (not dark and not light).
R + G + B =
88 + 202 + 127 = 417 (100%)
R 88 of 417 ~ 21.1%
G 202 of 417 ~ 48.44%
B 127 of 417 ~ 30.46%
#58CA7F color CMYK value is (56,0,37,21).
CMYK: (56,0,37,21) C56M0Y37K21 (56%,0%,37%,21%) (0.56/0.00/0.37/0.21)
58 | CA | 7F | |
---|---|---|---|
RGB | 88 | 202 | 127 |
HSL | 141° | 51.82% | 56.86% |
HSB/HSV | 141° | 56.44% | 79.22% |
CMYK | 56.44% | 0.00% | 37.13% |
20.78% |
HEX | 58 | CA | 7F |
Decimal | 88 | 202 | 127 |
Binary | 1011000 | 11001010 | 1111111 |
Octal | 130 | 312 | 177 |
Examples of css and html codes for elements with #58CA7F color. Also use rgb(88,202,127) instead hex code.
.myTextColor { color: #58CA7F; }
<p style="color:#58CA7F">This sample text font color is #58CA7F.</p>
This text font color is #58CA7F.
.myBgColor { background-color: #58CA7F; }
<div style="background-color:#58CA7F">Inner text</div>
This div background color is #58CA7F.
.myBorderColor { border: 1px solid #58CA7F; }
<div style="border:3px solid #58CA7F">Div</div>
This div border color is #58CA7F.
.myOpacity80 { color: #58CA7F; opacity: 0.8; }
<p style="color:#58CA7F;opacity:0.8;">80%</p>
Text with #58CA7F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58CA7F;}
<p style="text-shadow: 3px 3px 1px #58CA7F">Text here.</p>
This text has shadow with #58CA7F color.
.textShadow {text-shadow: 3px 3px 1px #58CA7F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58CA7F, 5px 5px 20px red">Text here.</p>
This text has shadow with #58CA7F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58CA7F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58CA7F, Direction=45, Strength=4)">Text</p>
This text has shadow with #58CA7F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58CA7F; -webkit-box-shadow: 1px 1px 3px 2px #58CA7F; box-shadow: 1px 1px 3px 2px #58CA7F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58CA7F; -webkit-box-shadow: 1px 1px 3px 2px #58CA7F; box-shadow:1px 1px 3px 2px #58CA7F;">
Div content here</div>
This text has color #58CA7F on black background.
This text has color #58CA7F on white background.
This text has black color on #58CA7F background.
This text has white color on #58CA7F background.