HEX: #50424E
RGB: (80,66,78)
#50424E contains red, green and blue colors in about the same proportion. Web safe color of #50424E is #663366 (or #636).
#50424E color RGB value is (80,66,78).
RGB: (80,66,78) (31%,26%,31%)
R 80 of 255 = 31%
G 66 of 255 = 26%
B 78 of 255 = 31%
R + G + B ~ 29%. #50424E is quite dark color.
R + G + B =
80 + 66 + 78 = 224 (100%)
R 80 of 224 ~ 35.71%
G 66 of 224 ~ 29.46%
B 78 of 224 ~ 34.82%
#50424E color CMYK value is (0,18,2,69).
CMYK: (0,18,2,69) C0M18Y2K69 (0%,18%,2%,69%) (0.00/0.18/0.02/0.69)
50 | 42 | 4E | |
---|---|---|---|
RGB | 80 | 66 | 78 |
HSL | 309° | 9.59% | 28.63% |
HSB/HSV | 309° | 17.50% | 31.37% |
CMYK | 0.00% | 17.50% | 2.50% |
68.63% |
HEX | 50 | 42 | 4E |
Decimal | 80 | 66 | 78 |
Binary | 1010000 | 1000010 | 1001110 |
Octal | 120 | 102 | 116 |
Examples of css and html codes for elements with #50424E color. Also use rgb(80,66,78) instead hex code.
.myTextColor { color: #50424E; }
<p style="color:#50424E">This sample text font color is #50424E.</p>
This text font color is #50424E.
.myBgColor { background-color: #50424E; }
<div style="background-color:#50424E">Inner text</div>
This div background color is #50424E.
.myBorderColor { border: 1px solid #50424E; }
<div style="border:3px solid #50424E">Div</div>
This div border color is #50424E.
.myOpacity80 { color: #50424E; opacity: 0.8; }
<p style="color:#50424E;opacity:0.8;">80%</p>
Text with #50424E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50424E;}
<p style="text-shadow: 3px 3px 1px #50424E">Text here.</p>
This text has shadow with #50424E color.
.textShadow {text-shadow: 3px 3px 1px #50424E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50424E, 5px 5px 20px red">Text here.</p>
This text has shadow with #50424E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50424E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50424E, Direction=45, Strength=4)">Text</p>
This text has shadow with #50424E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50424E; -webkit-box-shadow: 1px 1px 3px 2px #50424E; box-shadow: 1px 1px 3px 2px #50424E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50424E; -webkit-box-shadow: 1px 1px 3px 2px #50424E; box-shadow:1px 1px 3px 2px #50424E;">
Div content here</div>
This text has color #50424E on black background.
This text has color #50424E on white background.
This text has black color on #50424E background.
This text has white color on #50424E background.