HEX: #505556
RGB: (80,85,86)
#505556 contains red, green and blue colors in about the same proportion. Web safe color of #505556 is #666666 (or #666).
#505556 color RGB value is (80,85,86).
RGB: (80,85,86) (31%,33%,34%)
R 80 of 255 = 31%
G 85 of 255 = 33%
B 86 of 255 = 34%
R + G + B ~ 33%. #505556 is quite dark color.
R + G + B =
80 + 85 + 86 = 251 (100%)
R 80 of 251 ~ 31.87%
G 85 of 251 ~ 33.86%
B 86 of 251 ~ 34.26%
#505556 color CMYK value is (7,1,0,66).
CMYK: (7,1,0,66) C7M1Y0K66 (7%,1%,0%,66%) (0.07/0.01/0.00/0.66)
50 | 55 | 56 | |
---|---|---|---|
RGB | 80 | 85 | 86 |
HSL | 190° | 3.61% | 32.55% |
HSB/HSV | 190° | 6.98% | 33.73% |
CMYK | 6.98% | 1.16% | 0.00% |
66.27% |
HEX | 50 | 55 | 56 |
Decimal | 80 | 85 | 86 |
Binary | 1010000 | 1010101 | 1010110 |
Octal | 120 | 125 | 126 |
Examples of css and html codes for elements with #505556 color. Also use rgb(80,85,86) instead hex code.
.myTextColor { color: #505556; }
<p style="color:#505556">This sample text font color is #505556.</p>
This text font color is #505556.
.myBgColor { background-color: #505556; }
<div style="background-color:#505556">Inner text</div>
This div background color is #505556.
.myBorderColor { border: 1px solid #505556; }
<div style="border:3px solid #505556">Div</div>
This div border color is #505556.
.myOpacity80 { color: #505556; opacity: 0.8; }
<p style="color:#505556;opacity:0.8;">80%</p>
Text with #505556 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #505556;}
<p style="text-shadow: 3px 3px 1px #505556">Text here.</p>
This text has shadow with #505556 color.
.textShadow {text-shadow: 3px 3px 1px #505556, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #505556, 5px 5px 20px red">Text here.</p>
This text has shadow with #505556 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#505556, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#505556, Direction=45, Strength=4)">Text</p>
This text has shadow with #505556 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #505556; -webkit-box-shadow: 1px 1px 3px 2px #505556; box-shadow: 1px 1px 3px 2px #505556; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #505556; -webkit-box-shadow: 1px 1px 3px 2px #505556; box-shadow:1px 1px 3px 2px #505556;">
Div content here</div>
This text has color #505556 on black background.
This text has color #505556 on white background.
This text has black color on #505556 background.
This text has white color on #505556 background.