HEX: #4DC492
RGB: (77,196,146)
#4DC492 contains mainly green and blue colors. Web safe color of #4DC492 is #33CC99 (or #3C9).
#4DC492 color RGB value is (77,196,146).
RGB: (77,196,146) (30%,77%,57%)
R 77 of 255 = 30%
G 196 of 255 = 77%
B 146 of 255 = 57%
R + G + B ~ 55%. #4DC492 is middle color (not dark and not light).
R + G + B =
77 + 196 + 146 = 419 (100%)
R 77 of 419 ~ 18.38%
G 196 of 419 ~ 46.78%
B 146 of 419 ~ 34.84%
#4DC492 color CMYK value is (61,0,26,23).
CMYK: (61,0,26,23) C61M0Y26K23 (61%,0%,26%,23%) (0.61/0.00/0.26/0.23)
4D | C4 | 92 | |
---|---|---|---|
RGB | 77 | 196 | 146 |
HSL | 155° | 50.21% | 53.53% |
HSB/HSV | 155° | 60.71% | 76.86% |
CMYK | 60.71% | 0.00% | 25.51% |
23.14% |
HEX | 4D | C4 | 92 |
Decimal | 77 | 196 | 146 |
Binary | 1001101 | 11000100 | 10010010 |
Octal | 115 | 304 | 222 |
Examples of css and html codes for elements with #4DC492 color. Also use rgb(77,196,146) instead hex code.
.myTextColor { color: #4DC492; }
<p style="color:#4DC492">This sample text font color is #4DC492.</p>
This text font color is #4DC492.
.myBgColor { background-color: #4DC492; }
<div style="background-color:#4DC492">Inner text</div>
This div background color is #4DC492.
.myBorderColor { border: 1px solid #4DC492; }
<div style="border:3px solid #4DC492">Div</div>
This div border color is #4DC492.
.myOpacity80 { color: #4DC492; opacity: 0.8; }
<p style="color:#4DC492;opacity:0.8;">80%</p>
Text with #4DC492 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DC492;}
<p style="text-shadow: 3px 3px 1px #4DC492">Text here.</p>
This text has shadow with #4DC492 color.
.textShadow {text-shadow: 3px 3px 1px #4DC492, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DC492, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DC492 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DC492, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DC492, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DC492 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DC492; -webkit-box-shadow: 1px 1px 3px 2px #4DC492; box-shadow: 1px 1px 3px 2px #4DC492; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DC492; -webkit-box-shadow: 1px 1px 3px 2px #4DC492; box-shadow:1px 1px 3px 2px #4DC492;">
Div content here</div>
This text has color #4DC492 on black background.
This text has color #4DC492 on white background.
This text has black color on #4DC492 background.
This text has white color on #4DC492 background.