HEX: #49CB3E
RGB: (73,203,62)
#49CB3E contains mainly green color. Web safe color of #49CB3E is #33CC33 (or #3C3).
#49CB3E color RGB value is (73,203,62).
RGB: (73,203,62) (29%,80%,24%)
R 73 of 255 = 29%
G 203 of 255 = 80%
B 62 of 255 = 24%
R + G + B ~ 44%. #49CB3E is middle color (not dark and not light).
R + G + B =
73 + 203 + 62 = 338 (100%)
R 73 of 338 ~ 21.6%
G 203 of 338 ~ 60.06%
B 62 of 338 ~ 18.34%
#49CB3E color CMYK value is (64,0,69,20).
CMYK: (64,0,69,20) C64M0Y69K20 (64%,0%,69%,20%) (0.64/0.00/0.69/0.20)
49 | CB | 3E | |
---|---|---|---|
RGB | 73 | 203 | 62 |
HSL | 115° | 57.55% | 51.96% |
HSB/HSV | 115° | 69.46% | 79.61% |
CMYK | 64.04% | 0.00% | 69.46% |
20.39% |
HEX | 49 | CB | 3E |
Decimal | 73 | 203 | 62 |
Binary | 1001001 | 11001011 | 111110 |
Octal | 111 | 313 | 76 |
Examples of css and html codes for elements with #49CB3E color. Also use rgb(73,203,62) instead hex code.
.myTextColor { color: #49CB3E; }
<p style="color:#49CB3E">This sample text font color is #49CB3E.</p>
This text font color is #49CB3E.
.myBgColor { background-color: #49CB3E; }
<div style="background-color:#49CB3E">Inner text</div>
This div background color is #49CB3E.
.myBorderColor { border: 1px solid #49CB3E; }
<div style="border:3px solid #49CB3E">Div</div>
This div border color is #49CB3E.
.myOpacity80 { color: #49CB3E; opacity: 0.8; }
<p style="color:#49CB3E;opacity:0.8;">80%</p>
Text with #49CB3E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49CB3E;}
<p style="text-shadow: 3px 3px 1px #49CB3E">Text here.</p>
This text has shadow with #49CB3E color.
.textShadow {text-shadow: 3px 3px 1px #49CB3E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49CB3E, 5px 5px 20px red">Text here.</p>
This text has shadow with #49CB3E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49CB3E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49CB3E, Direction=45, Strength=4)">Text</p>
This text has shadow with #49CB3E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49CB3E; -webkit-box-shadow: 1px 1px 3px 2px #49CB3E; box-shadow: 1px 1px 3px 2px #49CB3E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49CB3E; -webkit-box-shadow: 1px 1px 3px 2px #49CB3E; box-shadow:1px 1px 3px 2px #49CB3E;">
Div content here</div>
This text has color #49CB3E on black background.
This text has color #49CB3E on white background.
This text has black color on #49CB3E background.
This text has white color on #49CB3E background.