HEX: #49666C
RGB: (73,102,108)
#49666C contains red, green and blue colors in about the same proportion. Web safe color of #49666C is #336666 (or #366).
#49666C color RGB value is (73,102,108).
RGB: (73,102,108) (29%,40%,42%)
R 73 of 255 = 29%
G 102 of 255 = 40%
B 108 of 255 = 42%
R + G + B ~ 37%. #49666C is quite dark color.
R + G + B =
73 + 102 + 108 = 283 (100%)
R 73 of 283 ~ 25.8%
G 102 of 283 ~ 36.04%
B 108 of 283 ~ 38.16%
#49666C color CMYK value is (32,6,0,58).
CMYK: (32,6,0,58) C32M6Y0K58 (32%,6%,0%,58%) (0.32/0.06/0.00/0.58)
49 | 66 | 6C | |
---|---|---|---|
RGB | 73 | 102 | 108 |
HSL | 190° | 19.34% | 35.49% |
HSB/HSV | 190° | 32.41% | 42.35% |
CMYK | 32.41% | 5.56% | 0.00% |
57.65% |
HEX | 49 | 66 | 6C |
Decimal | 73 | 102 | 108 |
Binary | 1001001 | 1100110 | 1101100 |
Octal | 111 | 146 | 154 |
Examples of css and html codes for elements with #49666C color. Also use rgb(73,102,108) instead hex code.
.myTextColor { color: #49666C; }
<p style="color:#49666C">This sample text font color is #49666C.</p>
This text font color is #49666C.
.myBgColor { background-color: #49666C; }
<div style="background-color:#49666C">Inner text</div>
This div background color is #49666C.
.myBorderColor { border: 1px solid #49666C; }
<div style="border:3px solid #49666C">Div</div>
This div border color is #49666C.
.myOpacity80 { color: #49666C; opacity: 0.8; }
<p style="color:#49666C;opacity:0.8;">80%</p>
Text with #49666C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #49666C;}
<p style="text-shadow: 3px 3px 1px #49666C">Text here.</p>
This text has shadow with #49666C color.
.textShadow {text-shadow: 3px 3px 1px #49666C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #49666C, 5px 5px 20px red">Text here.</p>
This text has shadow with #49666C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#49666C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#49666C, Direction=45, Strength=4)">Text</p>
This text has shadow with #49666C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #49666C; -webkit-box-shadow: 1px 1px 3px 2px #49666C; box-shadow: 1px 1px 3px 2px #49666C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #49666C; -webkit-box-shadow: 1px 1px 3px 2px #49666C; box-shadow:1px 1px 3px 2px #49666C;">
Div content here</div>
This text has color #49666C on black background.
This text has color #49666C on white background.
This text has black color on #49666C background.
This text has white color on #49666C background.