HEX: #505447
RGB: (80,84,71)
#505447 contains red, green and blue colors in about the same proportion. Web safe color of #505447 is #666633 (or #663).
#505447 color RGB value is (80,84,71).
RGB: (80,84,71) (31%,33%,28%)
R 80 of 255 = 31%
G 84 of 255 = 33%
B 71 of 255 = 28%
R + G + B ~ 31%. #505447 is quite dark color.
R + G + B =
80 + 84 + 71 = 235 (100%)
R 80 of 235 ~ 34.04%
G 84 of 235 ~ 35.74%
B 71 of 235 ~ 30.21%
#505447 color CMYK value is (5,0,15,67).
CMYK: (5,0,15,67) C5M0Y15K67 (5%,0%,15%,67%) (0.05/0.00/0.15/0.67)
50 | 54 | 47 | |
---|---|---|---|
RGB | 80 | 84 | 71 |
HSL | 78° | 8.39% | 30.39% |
HSB/HSV | 78° | 15.48% | 32.94% |
CMYK | 4.76% | 0.00% | 15.48% |
67.06% |
HEX | 50 | 54 | 47 |
Decimal | 80 | 84 | 71 |
Binary | 1010000 | 1010100 | 1000111 |
Octal | 120 | 124 | 107 |
Examples of css and html codes for elements with #505447 color. Also use rgb(80,84,71) instead hex code.
.myTextColor { color: #505447; }
<p style="color:#505447">This sample text font color is #505447.</p>
This text font color is #505447.
.myBgColor { background-color: #505447; }
<div style="background-color:#505447">Inner text</div>
This div background color is #505447.
.myBorderColor { border: 1px solid #505447; }
<div style="border:3px solid #505447">Div</div>
This div border color is #505447.
.myOpacity80 { color: #505447; opacity: 0.8; }
<p style="color:#505447;opacity:0.8;">80%</p>
Text with #505447 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #505447;}
<p style="text-shadow: 3px 3px 1px #505447">Text here.</p>
This text has shadow with #505447 color.
.textShadow {text-shadow: 3px 3px 1px #505447, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #505447, 5px 5px 20px red">Text here.</p>
This text has shadow with #505447 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#505447, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#505447, Direction=45, Strength=4)">Text</p>
This text has shadow with #505447 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #505447; -webkit-box-shadow: 1px 1px 3px 2px #505447; box-shadow: 1px 1px 3px 2px #505447; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #505447; -webkit-box-shadow: 1px 1px 3px 2px #505447; box-shadow:1px 1px 3px 2px #505447;">
Div content here</div>
This text has color #505447 on black background.
This text has color #505447 on white background.
This text has black color on #505447 background.
This text has white color on #505447 background.