HEX: #50494C
RGB: (80,73,76)
#50494C contains red, green and blue colors in about the same proportion. Web safe color of #50494C is #663333 (or #633).
#50494C color RGB value is (80,73,76).
RGB: (80,73,76) (31%,29%,30%)
R 80 of 255 = 31%
G 73 of 255 = 29%
B 76 of 255 = 30%
R + G + B ~ 30%. #50494C is quite dark color.
R + G + B =
80 + 73 + 76 = 229 (100%)
R 80 of 229 ~ 34.93%
G 73 of 229 ~ 31.88%
B 76 of 229 ~ 33.19%
#50494C color CMYK value is (0,9,5,69).
CMYK: (0,9,5,69) C0M9Y5K69 (0%,9%,5%,69%) (0.00/0.09/0.05/0.69)
50 | 49 | 4C | |
---|---|---|---|
RGB | 80 | 73 | 76 |
HSL | 334° | 4.58% | 30.00% |
HSB/HSV | 334° | 8.75% | 31.37% |
CMYK | 0.00% | 8.75% | 5.00% |
68.63% |
HEX | 50 | 49 | 4C |
Decimal | 80 | 73 | 76 |
Binary | 1010000 | 1001001 | 1001100 |
Octal | 120 | 111 | 114 |
Examples of css and html codes for elements with #50494C color. Also use rgb(80,73,76) instead hex code.
.myTextColor { color: #50494C; }
<p style="color:#50494C">This sample text font color is #50494C.</p>
This text font color is #50494C.
.myBgColor { background-color: #50494C; }
<div style="background-color:#50494C">Inner text</div>
This div background color is #50494C.
.myBorderColor { border: 1px solid #50494C; }
<div style="border:3px solid #50494C">Div</div>
This div border color is #50494C.
.myOpacity80 { color: #50494C; opacity: 0.8; }
<p style="color:#50494C;opacity:0.8;">80%</p>
Text with #50494C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50494C;}
<p style="text-shadow: 3px 3px 1px #50494C">Text here.</p>
This text has shadow with #50494C color.
.textShadow {text-shadow: 3px 3px 1px #50494C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50494C, 5px 5px 20px red">Text here.</p>
This text has shadow with #50494C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50494C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50494C, Direction=45, Strength=4)">Text</p>
This text has shadow with #50494C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50494C; -webkit-box-shadow: 1px 1px 3px 2px #50494C; box-shadow: 1px 1px 3px 2px #50494C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50494C; -webkit-box-shadow: 1px 1px 3px 2px #50494C; box-shadow:1px 1px 3px 2px #50494C;">
Div content here</div>
This text has color #50494C on black background.
This text has color #50494C on white background.
This text has black color on #50494C background.
This text has white color on #50494C background.