HEX: #58C09F
RGB: (88,192,159)
#58C09F contains mainly green and blue colors. Web safe color of #58C09F is #66CC99 (or #6C9).
#58C09F color RGB value is (88,192,159).
RGB: (88,192,159) (35%,75%,62%)
R 88 of 255 = 35%
G 192 of 255 = 75%
B 159 of 255 = 62%
R + G + B ~ 57%. #58C09F is middle color (not dark and not light).
R + G + B =
88 + 192 + 159 = 439 (100%)
R 88 of 439 ~ 20.05%
G 192 of 439 ~ 43.74%
B 159 of 439 ~ 36.22%
#58C09F color CMYK value is (54,0,17,25).
CMYK: (54,0,17,25) C54M0Y17K25 (54%,0%,17%,25%) (0.54/0.00/0.17/0.25)
58 | C0 | 9F | |
---|---|---|---|
RGB | 88 | 192 | 159 |
HSL | 161° | 45.22% | 54.90% |
HSB/HSV | 161° | 54.17% | 75.29% |
CMYK | 54.17% | 0.00% | 17.19% |
24.71% |
HEX | 58 | C0 | 9F |
Decimal | 88 | 192 | 159 |
Binary | 1011000 | 11000000 | 10011111 |
Octal | 130 | 300 | 237 |
Examples of css and html codes for elements with #58C09F color. Also use rgb(88,192,159) instead hex code.
.myTextColor { color: #58C09F; }
<p style="color:#58C09F">This sample text font color is #58C09F.</p>
This text font color is #58C09F.
.myBgColor { background-color: #58C09F; }
<div style="background-color:#58C09F">Inner text</div>
This div background color is #58C09F.
.myBorderColor { border: 1px solid #58C09F; }
<div style="border:3px solid #58C09F">Div</div>
This div border color is #58C09F.
.myOpacity80 { color: #58C09F; opacity: 0.8; }
<p style="color:#58C09F;opacity:0.8;">80%</p>
Text with #58C09F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58C09F;}
<p style="text-shadow: 3px 3px 1px #58C09F">Text here.</p>
This text has shadow with #58C09F color.
.textShadow {text-shadow: 3px 3px 1px #58C09F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58C09F, 5px 5px 20px red">Text here.</p>
This text has shadow with #58C09F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58C09F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58C09F, Direction=45, Strength=4)">Text</p>
This text has shadow with #58C09F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58C09F; -webkit-box-shadow: 1px 1px 3px 2px #58C09F; box-shadow: 1px 1px 3px 2px #58C09F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58C09F; -webkit-box-shadow: 1px 1px 3px 2px #58C09F; box-shadow:1px 1px 3px 2px #58C09F;">
Div content here</div>
This text has color #58C09F on black background.
This text has color #58C09F on white background.
This text has black color on #58C09F background.
This text has white color on #58C09F background.