HEX: #58E374
RGB: (88,227,116)
#58E374 contains mainly green color. Web safe color of #58E374 is #66CC66 (or #6C6).
#58E374 color RGB value is (88,227,116).
RGB: (88,227,116) (35%,89%,45%)
R 88 of 255 = 35%
G 227 of 255 = 89%
B 116 of 255 = 45%
R + G + B ~ 56%. #58E374 is middle color (not dark and not light).
R + G + B =
88 + 227 + 116 = 431 (100%)
R 88 of 431 ~ 20.42%
G 227 of 431 ~ 52.67%
B 116 of 431 ~ 26.91%
#58E374 color CMYK value is (61,0,49,11).
CMYK: (61,0,49,11) C61M0Y49K11 (61%,0%,49%,11%) (0.61/0.00/0.49/0.11)
58 | E3 | 74 | |
---|---|---|---|
RGB | 88 | 227 | 116 |
HSL | 132° | 71.28% | 61.76% |
HSB/HSV | 132° | 61.23% | 89.02% |
CMYK | 61.23% | 0.00% | 48.90% |
10.98% |
HEX | 58 | E3 | 74 |
Decimal | 88 | 227 | 116 |
Binary | 1011000 | 11100011 | 1110100 |
Octal | 130 | 343 | 164 |
Examples of css and html codes for elements with #58E374 color. Also use rgb(88,227,116) instead hex code.
.myTextColor { color: #58E374; }
<p style="color:#58E374">This sample text font color is #58E374.</p>
This text font color is #58E374.
.myBgColor { background-color: #58E374; }
<div style="background-color:#58E374">Inner text</div>
This div background color is #58E374.
.myBorderColor { border: 1px solid #58E374; }
<div style="border:3px solid #58E374">Div</div>
This div border color is #58E374.
.myOpacity80 { color: #58E374; opacity: 0.8; }
<p style="color:#58E374;opacity:0.8;">80%</p>
Text with #58E374 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58E374;}
<p style="text-shadow: 3px 3px 1px #58E374">Text here.</p>
This text has shadow with #58E374 color.
.textShadow {text-shadow: 3px 3px 1px #58E374, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58E374, 5px 5px 20px red">Text here.</p>
This text has shadow with #58E374 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58E374, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58E374, Direction=45, Strength=4)">Text</p>
This text has shadow with #58E374 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58E374; -webkit-box-shadow: 1px 1px 3px 2px #58E374; box-shadow: 1px 1px 3px 2px #58E374; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58E374; -webkit-box-shadow: 1px 1px 3px 2px #58E374; box-shadow:1px 1px 3px 2px #58E374;">
Div content here</div>
This text has color #58E374 on black background.
This text has color #58E374 on white background.
This text has black color on #58E374 background.
This text has white color on #58E374 background.