HEX: #587C30
RGB: (88,124,48)
#587C30 contains mainly red and green colors. Web safe color of #587C30 is #666633 (or #663).
#587C30 color RGB value is (88,124,48).
RGB: (88,124,48) (35%,49%,19%)
R 88 of 255 = 35%
G 124 of 255 = 49%
B 48 of 255 = 19%
R + G + B ~ 34%. #587C30 is quite dark color.
R + G + B =
88 + 124 + 48 = 260 (100%)
R 88 of 260 ~ 33.85%
G 124 of 260 ~ 47.69%
B 48 of 260 ~ 18.46%
#587C30 color CMYK value is (29,0,61,51).
CMYK: (29,0,61,51) C29M0Y61K51 (29%,0%,61%,51%) (0.29/0.00/0.61/0.51)
58 | 7C | 30 | |
---|---|---|---|
RGB | 88 | 124 | 48 |
HSL | 88° | 44.19% | 33.73% |
HSB/HSV | 88° | 61.29% | 48.63% |
CMYK | 29.03% | 0.00% | 61.29% |
51.37% |
HEX | 58 | 7C | 30 |
Decimal | 88 | 124 | 48 |
Binary | 1011000 | 1111100 | 110000 |
Octal | 130 | 174 | 60 |
Examples of css and html codes for elements with #587C30 color. Also use rgb(88,124,48) instead hex code.
.myTextColor { color: #587C30; }
<p style="color:#587C30">This sample text font color is #587C30.</p>
This text font color is #587C30.
.myBgColor { background-color: #587C30; }
<div style="background-color:#587C30">Inner text</div>
This div background color is #587C30.
.myBorderColor { border: 1px solid #587C30; }
<div style="border:3px solid #587C30">Div</div>
This div border color is #587C30.
.myOpacity80 { color: #587C30; opacity: 0.8; }
<p style="color:#587C30;opacity:0.8;">80%</p>
Text with #587C30 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #587C30;}
<p style="text-shadow: 3px 3px 1px #587C30">Text here.</p>
This text has shadow with #587C30 color.
.textShadow {text-shadow: 3px 3px 1px #587C30, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #587C30, 5px 5px 20px red">Text here.</p>
This text has shadow with #587C30 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#587C30, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#587C30, Direction=45, Strength=4)">Text</p>
This text has shadow with #587C30 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #587C30; -webkit-box-shadow: 1px 1px 3px 2px #587C30; box-shadow: 1px 1px 3px 2px #587C30; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #587C30; -webkit-box-shadow: 1px 1px 3px 2px #587C30; box-shadow:1px 1px 3px 2px #587C30;">
Div content here</div>
This text has color #587C30 on black background.
This text has color #587C30 on white background.
This text has black color on #587C30 background.
This text has white color on #587C30 background.