HEX: #49AE4B
RGB: (73,174,75)
#49AE4B contains mainly green color. Web safe color of #49AE4B is #339933 (or #393).
#49AE4B color RGB value is (73,174,75).
RGB: (73,174,75) (29%,68%,29%)
R 73 of 255 = 29%
G 174 of 255 = 68%
B 75 of 255 = 29%
R + G + B ~ 42%. #49AE4B is middle color (not dark and not light).
R + G + B =
73 + 174 + 75 = 322 (100%)
R 73 of 322 ~ 22.67%
G 174 of 322 ~ 54.04%
B 75 of 322 ~ 23.29%
#49AE4B color CMYK value is (58,0,57,32).
CMYK: (58,0,57,32) C58M0Y57K32 (58%,0%,57%,32%) (0.58/0.00/0.57/0.32)
49 | AE | 4B | |
---|---|---|---|
RGB | 73 | 174 | 75 |
HSL | 121° | 40.89% | 48.43% |
HSB/HSV | 121° | 58.05% | 68.24% |
CMYK | 58.05% | 0.00% | 56.90% |
31.76% |
HEX | 49 | AE | 4B |
Decimal | 73 | 174 | 75 |
Binary | 1001001 | 10101110 | 1001011 |
Octal | 111 | 256 | 113 |
Examples of css and html codes for elements with #49AE4B color. Also use rgb(73,174,75) instead hex code.
.myTextColor { color: #49AE4B; }
<p style="color:#49AE4B">This sample text font color is #49AE4B.</p>
This text font color is #49AE4B.
.myBgColor { background-color: #49AE4B; }
<div style="background-color:#49AE4B">Inner text</div>
This div background color is #49AE4B.
.myBorderColor { border: 1px solid #49AE4B; }
<div style="border:3px solid #49AE4B">Div</div>
This div border color is #49AE4B.
.myOpacity80 { color: #49AE4B; opacity: 0.8; }
<p style="color:#49AE4B;opacity:0.8;">80%</p>
Text with #49AE4B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49AE4B;}
<p style="text-shadow: 3px 3px 1px #49AE4B">Text here.</p>
This text has shadow with #49AE4B color.
.textShadow {text-shadow: 3px 3px 1px #49AE4B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49AE4B, 5px 5px 20px red">Text here.</p>
This text has shadow with #49AE4B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49AE4B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49AE4B, Direction=45, Strength=4)">Text</p>
This text has shadow with #49AE4B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49AE4B; -webkit-box-shadow: 1px 1px 3px 2px #49AE4B; box-shadow: 1px 1px 3px 2px #49AE4B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49AE4B; -webkit-box-shadow: 1px 1px 3px 2px #49AE4B; box-shadow:1px 1px 3px 2px #49AE4B;">
Div content here</div>
This text has color #49AE4B on black background.
This text has color #49AE4B on white background.
This text has black color on #49AE4B background.
This text has white color on #49AE4B background.