HEX: #50565D
RGB: (80,86,93)
#50565D contains red, green and blue colors in about the same proportion. Web safe color of #50565D is #666666 (or #666).
#50565D color RGB value is (80,86,93).
RGB: (80,86,93) (31%,34%,36%)
R 80 of 255 = 31%
G 86 of 255 = 34%
B 93 of 255 = 36%
R + G + B ~ 34%. #50565D is quite dark color.
R + G + B =
80 + 86 + 93 = 259 (100%)
R 80 of 259 ~ 30.89%
G 86 of 259 ~ 33.2%
B 93 of 259 ~ 35.91%
#50565D color CMYK value is (14,8,0,64).
CMYK: (14,8,0,64) C14M8Y0K64 (14%,8%,0%,64%) (0.14/0.08/0.00/0.64)
50 | 56 | 5D | |
---|---|---|---|
RGB | 80 | 86 | 93 |
HSL | 212° | 7.51% | 33.92% |
HSB/HSV | 212° | 13.98% | 36.47% |
CMYK | 13.98% | 7.53% | 0.00% |
63.53% |
HEX | 50 | 56 | 5D |
Decimal | 80 | 86 | 93 |
Binary | 1010000 | 1010110 | 1011101 |
Octal | 120 | 126 | 135 |
Examples of css and html codes for elements with #50565D color. Also use rgb(80,86,93) instead hex code.
.myTextColor { color: #50565D; }
<p style="color:#50565D">This sample text font color is #50565D.</p>
This text font color is #50565D.
.myBgColor { background-color: #50565D; }
<div style="background-color:#50565D">Inner text</div>
This div background color is #50565D.
.myBorderColor { border: 1px solid #50565D; }
<div style="border:3px solid #50565D">Div</div>
This div border color is #50565D.
.myOpacity80 { color: #50565D; opacity: 0.8; }
<p style="color:#50565D;opacity:0.8;">80%</p>
Text with #50565D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50565D;}
<p style="text-shadow: 3px 3px 1px #50565D">Text here.</p>
This text has shadow with #50565D color.
.textShadow {text-shadow: 3px 3px 1px #50565D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50565D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50565D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50565D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50565D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50565D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50565D; -webkit-box-shadow: 1px 1px 3px 2px #50565D; box-shadow: 1px 1px 3px 2px #50565D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50565D; -webkit-box-shadow: 1px 1px 3px 2px #50565D; box-shadow:1px 1px 3px 2px #50565D;">
Div content here</div>
This text has color #50565D on black background.
This text has color #50565D on white background.
This text has black color on #50565D background.
This text has white color on #50565D background.