HEX: #50536E
RGB: (80,83,110)
#50536E contains red, green and blue colors in about the same proportion. Web safe color of #50536E is #666666 (or #666).
#50536E color RGB value is (80,83,110).
RGB: (80,83,110) (31%,33%,43%)
R 80 of 255 = 31%
G 83 of 255 = 33%
B 110 of 255 = 43%
R + G + B ~ 36%. #50536E is quite dark color.
R + G + B =
80 + 83 + 110 = 273 (100%)
R 80 of 273 ~ 29.3%
G 83 of 273 ~ 30.4%
B 110 of 273 ~ 40.29%
#50536E color CMYK value is (27,25,0,57).
CMYK: (27,25,0,57) C27M25Y0K57 (27%,25%,0%,57%) (0.27/0.25/0.00/0.57)
50 | 53 | 6E | |
---|---|---|---|
RGB | 80 | 83 | 110 |
HSL | 234° | 15.79% | 37.25% |
HSB/HSV | 234° | 27.27% | 43.14% |
CMYK | 27.27% | 24.55% | 0.00% |
56.86% |
HEX | 50 | 53 | 6E |
Decimal | 80 | 83 | 110 |
Binary | 1010000 | 1010011 | 1101110 |
Octal | 120 | 123 | 156 |
Examples of css and html codes for elements with #50536E color. Also use rgb(80,83,110) instead hex code.
.myTextColor { color: #50536E; }
<p style="color:#50536E">This sample text font color is #50536E.</p>
This text font color is #50536E.
.myBgColor { background-color: #50536E; }
<div style="background-color:#50536E">Inner text</div>
This div background color is #50536E.
.myBorderColor { border: 1px solid #50536E; }
<div style="border:3px solid #50536E">Div</div>
This div border color is #50536E.
.myOpacity80 { color: #50536E; opacity: 0.8; }
<p style="color:#50536E;opacity:0.8;">80%</p>
Text with #50536E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50536E;}
<p style="text-shadow: 3px 3px 1px #50536E">Text here.</p>
This text has shadow with #50536E color.
.textShadow {text-shadow: 3px 3px 1px #50536E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50536E, 5px 5px 20px red">Text here.</p>
This text has shadow with #50536E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50536E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50536E, Direction=45, Strength=4)">Text</p>
This text has shadow with #50536E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50536E; -webkit-box-shadow: 1px 1px 3px 2px #50536E; box-shadow: 1px 1px 3px 2px #50536E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50536E; -webkit-box-shadow: 1px 1px 3px 2px #50536E; box-shadow:1px 1px 3px 2px #50536E;">
Div content here</div>
This text has color #50536E on black background.
This text has color #50536E on white background.
This text has black color on #50536E background.
This text has white color on #50536E background.