HEX: #49A688
RGB: (73,166,136)
#49A688 contains mainly green and blue colors. Web safe color of #49A688 is #339999 (or #399).
#49A688 color RGB value is (73,166,136).
RGB: (73,166,136) (29%,65%,53%)
R 73 of 255 = 29%
G 166 of 255 = 65%
B 136 of 255 = 53%
R + G + B ~ 49%. #49A688 is middle color (not dark and not light).
R + G + B =
73 + 166 + 136 = 375 (100%)
R 73 of 375 ~ 19.47%
G 166 of 375 ~ 44.27%
B 136 of 375 ~ 36.27%
#49A688 color CMYK value is (56,0,18,35).
CMYK: (56,0,18,35) C56M0Y18K35 (56%,0%,18%,35%) (0.56/0.00/0.18/0.35)
49 | A6 | 88 | |
---|---|---|---|
RGB | 73 | 166 | 136 |
HSL | 161° | 38.91% | 46.86% |
HSB/HSV | 161° | 56.02% | 65.10% |
CMYK | 56.02% | 0.00% | 18.07% |
34.90% |
HEX | 49 | A6 | 88 |
Decimal | 73 | 166 | 136 |
Binary | 1001001 | 10100110 | 10001000 |
Octal | 111 | 246 | 210 |
Examples of css and html codes for elements with #49A688 color. Also use rgb(73,166,136) instead hex code.
.myTextColor { color: #49A688; }
<p style="color:#49A688">This sample text font color is #49A688.</p>
This text font color is #49A688.
.myBgColor { background-color: #49A688; }
<div style="background-color:#49A688">Inner text</div>
This div background color is #49A688.
.myBorderColor { border: 1px solid #49A688; }
<div style="border:3px solid #49A688">Div</div>
This div border color is #49A688.
.myOpacity80 { color: #49A688; opacity: 0.8; }
<p style="color:#49A688;opacity:0.8;">80%</p>
Text with #49A688 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49A688;}
<p style="text-shadow: 3px 3px 1px #49A688">Text here.</p>
This text has shadow with #49A688 color.
.textShadow {text-shadow: 3px 3px 1px #49A688, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49A688, 5px 5px 20px red">Text here.</p>
This text has shadow with #49A688 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49A688, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49A688, Direction=45, Strength=4)">Text</p>
This text has shadow with #49A688 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49A688; -webkit-box-shadow: 1px 1px 3px 2px #49A688; box-shadow: 1px 1px 3px 2px #49A688; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49A688; -webkit-box-shadow: 1px 1px 3px 2px #49A688; box-shadow:1px 1px 3px 2px #49A688;">
Div content here</div>
This text has color #49A688 on black background.
This text has color #49A688 on white background.
This text has black color on #49A688 background.
This text has white color on #49A688 background.