HEX: #58A54A
RGB: (88,165,74)
#58A54A contains mainly green color. Web safe color of #58A54A is #669933 (or #693).
#58A54A color RGB value is (88,165,74).
RGB: (88,165,74) (35%,65%,29%)
R 88 of 255 = 35%
G 165 of 255 = 65%
B 74 of 255 = 29%
R + G + B ~ 43%. #58A54A is middle color (not dark and not light).
R + G + B =
88 + 165 + 74 = 327 (100%)
R 88 of 327 ~ 26.91%
G 165 of 327 ~ 50.46%
B 74 of 327 ~ 22.63%
#58A54A color CMYK value is (47,0,55,35).
CMYK: (47,0,55,35) C47M0Y55K35 (47%,0%,55%,35%) (0.47/0.00/0.55/0.35)
58 | A5 | 4A | |
---|---|---|---|
RGB | 88 | 165 | 74 |
HSL | 111° | 38.08% | 46.86% |
HSB/HSV | 111° | 55.15% | 64.71% |
CMYK | 46.67% | 0.00% | 55.15% |
35.29% |
HEX | 58 | A5 | 4A |
Decimal | 88 | 165 | 74 |
Binary | 1011000 | 10100101 | 1001010 |
Octal | 130 | 245 | 112 |
Examples of css and html codes for elements with #58A54A color. Also use rgb(88,165,74) instead hex code.
.myTextColor { color: #58A54A; }
<p style="color:#58A54A">This sample text font color is #58A54A.</p>
This text font color is #58A54A.
.myBgColor { background-color: #58A54A; }
<div style="background-color:#58A54A">Inner text</div>
This div background color is #58A54A.
.myBorderColor { border: 1px solid #58A54A; }
<div style="border:3px solid #58A54A">Div</div>
This div border color is #58A54A.
.myOpacity80 { color: #58A54A; opacity: 0.8; }
<p style="color:#58A54A;opacity:0.8;">80%</p>
Text with #58A54A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58A54A;}
<p style="text-shadow: 3px 3px 1px #58A54A">Text here.</p>
This text has shadow with #58A54A color.
.textShadow {text-shadow: 3px 3px 1px #58A54A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58A54A, 5px 5px 20px red">Text here.</p>
This text has shadow with #58A54A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58A54A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58A54A, Direction=45, Strength=4)">Text</p>
This text has shadow with #58A54A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58A54A; -webkit-box-shadow: 1px 1px 3px 2px #58A54A; box-shadow: 1px 1px 3px 2px #58A54A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58A54A; -webkit-box-shadow: 1px 1px 3px 2px #58A54A; box-shadow:1px 1px 3px 2px #58A54A;">
Div content here</div>
This text has color #58A54A on black background.
This text has color #58A54A on white background.
This text has black color on #58A54A background.
This text has white color on #58A54A background.