HEX: #4CB650
RGB: (76,182,80)
#4CB650 contains mainly green color. Web safe color of #4CB650 is #33CC66 (or #3C6).
#4CB650 color RGB value is (76,182,80).
RGB: (76,182,80) (30%,71%,31%)
R 76 of 255 = 30%
G 182 of 255 = 71%
B 80 of 255 = 31%
R + G + B ~ 44%. #4CB650 is middle color (not dark and not light).
R + G + B =
76 + 182 + 80 = 338 (100%)
R 76 of 338 ~ 22.49%
G 182 of 338 ~ 53.85%
B 80 of 338 ~ 23.67%
#4CB650 color CMYK value is (58,0,56,29).
CMYK: (58,0,56,29) C58M0Y56K29 (58%,0%,56%,29%) (0.58/0.00/0.56/0.29)
4C | B6 | 50 | |
---|---|---|---|
RGB | 76 | 182 | 80 |
HSL | 122° | 42.06% | 50.59% |
HSB/HSV | 122° | 58.24% | 71.37% |
CMYK | 58.24% | 0.00% | 56.04% |
28.63% |
HEX | 4C | B6 | 50 |
Decimal | 76 | 182 | 80 |
Binary | 1001100 | 10110110 | 1010000 |
Octal | 114 | 266 | 120 |
Examples of css and html codes for elements with #4CB650 color. Also use rgb(76,182,80) instead hex code.
.myTextColor { color: #4CB650; }
<p style="color:#4CB650">This sample text font color is #4CB650.</p>
This text font color is #4CB650.
.myBgColor { background-color: #4CB650; }
<div style="background-color:#4CB650">Inner text</div>
This div background color is #4CB650.
.myBorderColor { border: 1px solid #4CB650; }
<div style="border:3px solid #4CB650">Div</div>
This div border color is #4CB650.
.myOpacity80 { color: #4CB650; opacity: 0.8; }
<p style="color:#4CB650;opacity:0.8;">80%</p>
Text with #4CB650 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4CB650;}
<p style="text-shadow: 3px 3px 1px #4CB650">Text here.</p>
This text has shadow with #4CB650 color.
.textShadow {text-shadow: 3px 3px 1px #4CB650, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4CB650, 5px 5px 20px red">Text here.</p>
This text has shadow with #4CB650 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4CB650, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4CB650, Direction=45, Strength=4)">Text</p>
This text has shadow with #4CB650 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4CB650; -webkit-box-shadow: 1px 1px 3px 2px #4CB650; box-shadow: 1px 1px 3px 2px #4CB650; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4CB650; -webkit-box-shadow: 1px 1px 3px 2px #4CB650; box-shadow:1px 1px 3px 2px #4CB650;">
Div content here</div>
This text has color #4CB650 on black background.
This text has color #4CB650 on white background.
This text has black color on #4CB650 background.
This text has white color on #4CB650 background.