HEX: #49A37B
RGB: (73,163,123)
#49A37B contains mainly green and blue colors. Web safe color of #49A37B is #339966 (or #396).
#49A37B color RGB value is (73,163,123).
RGB: (73,163,123) (29%,64%,48%)
R 73 of 255 = 29%
G 163 of 255 = 64%
B 123 of 255 = 48%
R + G + B ~ 47%. #49A37B is middle color (not dark and not light).
R + G + B =
73 + 163 + 123 = 359 (100%)
R 73 of 359 ~ 20.33%
G 163 of 359 ~ 45.4%
B 123 of 359 ~ 34.26%
#49A37B color CMYK value is (55,0,25,36).
CMYK: (55,0,25,36) C55M0Y25K36 (55%,0%,25%,36%) (0.55/0.00/0.25/0.36)
49 | A3 | 7B | |
---|---|---|---|
RGB | 73 | 163 | 123 |
HSL | 153° | 38.14% | 46.27% |
HSB/HSV | 153° | 55.21% | 63.92% |
CMYK | 55.21% | 0.00% | 24.54% |
36.08% |
HEX | 49 | A3 | 7B |
Decimal | 73 | 163 | 123 |
Binary | 1001001 | 10100011 | 1111011 |
Octal | 111 | 243 | 173 |
Examples of css and html codes for elements with #49A37B color. Also use rgb(73,163,123) instead hex code.
.myTextColor { color: #49A37B; }
<p style="color:#49A37B">This sample text font color is #49A37B.</p>
This text font color is #49A37B.
.myBgColor { background-color: #49A37B; }
<div style="background-color:#49A37B">Inner text</div>
This div background color is #49A37B.
.myBorderColor { border: 1px solid #49A37B; }
<div style="border:3px solid #49A37B">Div</div>
This div border color is #49A37B.
.myOpacity80 { color: #49A37B; opacity: 0.8; }
<p style="color:#49A37B;opacity:0.8;">80%</p>
Text with #49A37B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49A37B;}
<p style="text-shadow: 3px 3px 1px #49A37B">Text here.</p>
This text has shadow with #49A37B color.
.textShadow {text-shadow: 3px 3px 1px #49A37B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49A37B, 5px 5px 20px red">Text here.</p>
This text has shadow with #49A37B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49A37B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49A37B, Direction=45, Strength=4)">Text</p>
This text has shadow with #49A37B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49A37B; -webkit-box-shadow: 1px 1px 3px 2px #49A37B; box-shadow: 1px 1px 3px 2px #49A37B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49A37B; -webkit-box-shadow: 1px 1px 3px 2px #49A37B; box-shadow:1px 1px 3px 2px #49A37B;">
Div content here</div>
This text has color #49A37B on black background.
This text has color #49A37B on white background.
This text has black color on #49A37B background.
This text has white color on #49A37B background.