HEX: #58947D
RGB: (88,148,125)
#58947D contains mainly green and blue colors. Web safe color of #58947D is #669966 (or #696).
#58947D color RGB value is (88,148,125).
RGB: (88,148,125) (35%,58%,49%)
R 88 of 255 = 35%
G 148 of 255 = 58%
B 125 of 255 = 49%
R + G + B ~ 47%. #58947D is middle color (not dark and not light).
R + G + B =
88 + 148 + 125 = 361 (100%)
R 88 of 361 ~ 24.38%
G 148 of 361 ~ 41%
B 125 of 361 ~ 34.63%
#58947D color CMYK value is (41,0,16,42).
CMYK: (41,0,16,42) C41M0Y16K42 (41%,0%,16%,42%) (0.41/0.00/0.16/0.42)
58 | 94 | 7D | |
---|---|---|---|
RGB | 88 | 148 | 125 |
HSL | 157° | 25.42% | 46.27% |
HSB/HSV | 157° | 40.54% | 58.04% |
CMYK | 40.54% | 0.00% | 15.54% |
41.96% |
HEX | 58 | 94 | 7D |
Decimal | 88 | 148 | 125 |
Binary | 1011000 | 10010100 | 1111101 |
Octal | 130 | 224 | 175 |
Examples of css and html codes for elements with #58947D color. Also use rgb(88,148,125) instead hex code.
.myTextColor { color: #58947D; }
<p style="color:#58947D">This sample text font color is #58947D.</p>
This text font color is #58947D.
.myBgColor { background-color: #58947D; }
<div style="background-color:#58947D">Inner text</div>
This div background color is #58947D.
.myBorderColor { border: 1px solid #58947D; }
<div style="border:3px solid #58947D">Div</div>
This div border color is #58947D.
.myOpacity80 { color: #58947D; opacity: 0.8; }
<p style="color:#58947D;opacity:0.8;">80%</p>
Text with #58947D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58947D;}
<p style="text-shadow: 3px 3px 1px #58947D">Text here.</p>
This text has shadow with #58947D color.
.textShadow {text-shadow: 3px 3px 1px #58947D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58947D, 5px 5px 20px red">Text here.</p>
This text has shadow with #58947D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58947D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58947D, Direction=45, Strength=4)">Text</p>
This text has shadow with #58947D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58947D; -webkit-box-shadow: 1px 1px 3px 2px #58947D; box-shadow: 1px 1px 3px 2px #58947D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58947D; -webkit-box-shadow: 1px 1px 3px 2px #58947D; box-shadow:1px 1px 3px 2px #58947D;">
Div content here</div>
This text has color #58947D on black background.
This text has color #58947D on white background.
This text has black color on #58947D background.
This text has white color on #58947D background.