HEX: #4CC38B
RGB: (76,195,139)
#4CC38B contains mainly green and blue colors. Web safe color of #4CC38B is #33CC99 (or #3C9).
#4CC38B color RGB value is (76,195,139).
RGB: (76,195,139) (30%,76%,55%)
R 76 of 255 = 30%
G 195 of 255 = 76%
B 139 of 255 = 55%
R + G + B ~ 54%. #4CC38B is middle color (not dark and not light).
R + G + B =
76 + 195 + 139 = 410 (100%)
R 76 of 410 ~ 18.54%
G 195 of 410 ~ 47.56%
B 139 of 410 ~ 33.9%
#4CC38B color CMYK value is (61,0,29,24).
CMYK: (61,0,29,24) C61M0Y29K24 (61%,0%,29%,24%) (0.61/0.00/0.29/0.24)
4C | C3 | 8B | |
---|---|---|---|
RGB | 76 | 195 | 139 |
HSL | 152° | 49.79% | 53.14% |
HSB/HSV | 152° | 61.03% | 76.47% |
CMYK | 61.03% | 0.00% | 28.72% |
23.53% |
HEX | 4C | C3 | 8B |
Decimal | 76 | 195 | 139 |
Binary | 1001100 | 11000011 | 10001011 |
Octal | 114 | 303 | 213 |
Examples of css and html codes for elements with #4CC38B color. Also use rgb(76,195,139) instead hex code.
.myTextColor { color: #4CC38B; }
<p style="color:#4CC38B">This sample text font color is #4CC38B.</p>
This text font color is #4CC38B.
.myBgColor { background-color: #4CC38B; }
<div style="background-color:#4CC38B">Inner text</div>
This div background color is #4CC38B.
.myBorderColor { border: 1px solid #4CC38B; }
<div style="border:3px solid #4CC38B">Div</div>
This div border color is #4CC38B.
.myOpacity80 { color: #4CC38B; opacity: 0.8; }
<p style="color:#4CC38B;opacity:0.8;">80%</p>
Text with #4CC38B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4CC38B;}
<p style="text-shadow: 3px 3px 1px #4CC38B">Text here.</p>
This text has shadow with #4CC38B color.
.textShadow {text-shadow: 3px 3px 1px #4CC38B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4CC38B, 5px 5px 20px red">Text here.</p>
This text has shadow with #4CC38B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4CC38B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4CC38B, Direction=45, Strength=4)">Text</p>
This text has shadow with #4CC38B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4CC38B; -webkit-box-shadow: 1px 1px 3px 2px #4CC38B; box-shadow: 1px 1px 3px 2px #4CC38B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4CC38B; -webkit-box-shadow: 1px 1px 3px 2px #4CC38B; box-shadow:1px 1px 3px 2px #4CC38B;">
Div content here</div>
This text has color #4CC38B on black background.
This text has color #4CC38B on white background.
This text has black color on #4CC38B background.
This text has white color on #4CC38B background.