HEX: #50606F
RGB: (80,96,111)
#50606F contains red, green and blue colors in about the same proportion. Web safe color of #50606F is #666666 (or #666).
#50606F color RGB value is (80,96,111).
RGB: (80,96,111) (31%,38%,44%)
R 80 of 255 = 31%
G 96 of 255 = 38%
B 111 of 255 = 44%
R + G + B ~ 38%. #50606F is quite dark color.
R + G + B =
80 + 96 + 111 = 287 (100%)
R 80 of 287 ~ 27.87%
G 96 of 287 ~ 33.45%
B 111 of 287 ~ 38.68%
#50606F color CMYK value is (28,14,0,56).
CMYK: (28,14,0,56) C28M14Y0K56 (28%,14%,0%,56%) (0.28/0.14/0.00/0.56)
50 | 60 | 6F | |
---|---|---|---|
RGB | 80 | 96 | 111 |
HSL | 209° | 16.23% | 37.45% |
HSB/HSV | 209° | 27.93% | 43.53% |
CMYK | 27.93% | 13.51% | 0.00% |
56.47% |
HEX | 50 | 60 | 6F |
Decimal | 80 | 96 | 111 |
Binary | 1010000 | 1100000 | 1101111 |
Octal | 120 | 140 | 157 |
Examples of css and html codes for elements with #50606F color. Also use rgb(80,96,111) instead hex code.
.myTextColor { color: #50606F; }
<p style="color:#50606F">This sample text font color is #50606F.</p>
This text font color is #50606F.
.myBgColor { background-color: #50606F; }
<div style="background-color:#50606F">Inner text</div>
This div background color is #50606F.
.myBorderColor { border: 1px solid #50606F; }
<div style="border:3px solid #50606F">Div</div>
This div border color is #50606F.
.myOpacity80 { color: #50606F; opacity: 0.8; }
<p style="color:#50606F;opacity:0.8;">80%</p>
Text with #50606F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50606F;}
<p style="text-shadow: 3px 3px 1px #50606F">Text here.</p>
This text has shadow with #50606F color.
.textShadow {text-shadow: 3px 3px 1px #50606F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50606F, 5px 5px 20px red">Text here.</p>
This text has shadow with #50606F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50606F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50606F, Direction=45, Strength=4)">Text</p>
This text has shadow with #50606F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50606F; -webkit-box-shadow: 1px 1px 3px 2px #50606F; box-shadow: 1px 1px 3px 2px #50606F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50606F; -webkit-box-shadow: 1px 1px 3px 2px #50606F; box-shadow:1px 1px 3px 2px #50606F;">
Div content here</div>
This text has color #50606F on black background.
This text has color #50606F on white background.
This text has black color on #50606F background.
This text has white color on #50606F background.