HEX: #49575A
RGB: (73,87,90)
#49575A contains red, green and blue colors in about the same proportion. Web safe color of #49575A is #336666 (or #366).
#49575A color RGB value is (73,87,90).
RGB: (73,87,90) (29%,34%,35%)
R 73 of 255 = 29%
G 87 of 255 = 34%
B 90 of 255 = 35%
R + G + B ~ 33%. #49575A is quite dark color.
R + G + B =
73 + 87 + 90 = 250 (100%)
R 73 of 250 ~ 29.2%
G 87 of 250 ~ 34.8%
B 90 of 250 ~ 36%
#49575A color CMYK value is (19,3,0,65).
CMYK: (19,3,0,65) C19M3Y0K65 (19%,3%,0%,65%) (0.19/0.03/0.00/0.65)
49 | 57 | 5A | |
---|---|---|---|
RGB | 73 | 87 | 90 |
HSL | 191° | 10.43% | 31.96% |
HSB/HSV | 191° | 18.89% | 35.29% |
CMYK | 18.89% | 3.33% | 0.00% |
64.71% |
HEX | 49 | 57 | 5A |
Decimal | 73 | 87 | 90 |
Binary | 1001001 | 1010111 | 1011010 |
Octal | 111 | 127 | 132 |
Examples of css and html codes for elements with #49575A color. Also use rgb(73,87,90) instead hex code.
.myTextColor { color: #49575A; }
<p style="color:#49575A">This sample text font color is #49575A.</p>
This text font color is #49575A.
.myBgColor { background-color: #49575A; }
<div style="background-color:#49575A">Inner text</div>
This div background color is #49575A.
.myBorderColor { border: 1px solid #49575A; }
<div style="border:3px solid #49575A">Div</div>
This div border color is #49575A.
.myOpacity80 { color: #49575A; opacity: 0.8; }
<p style="color:#49575A;opacity:0.8;">80%</p>
Text with #49575A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49575A;}
<p style="text-shadow: 3px 3px 1px #49575A">Text here.</p>
This text has shadow with #49575A color.
.textShadow {text-shadow: 3px 3px 1px #49575A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49575A, 5px 5px 20px red">Text here.</p>
This text has shadow with #49575A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49575A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49575A, Direction=45, Strength=4)">Text</p>
This text has shadow with #49575A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49575A; -webkit-box-shadow: 1px 1px 3px 2px #49575A; box-shadow: 1px 1px 3px 2px #49575A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49575A; -webkit-box-shadow: 1px 1px 3px 2px #49575A; box-shadow:1px 1px 3px 2px #49575A;">
Div content here</div>
This text has color #49575A on black background.
This text has color #49575A on white background.
This text has black color on #49575A background.
This text has white color on #49575A background.