HEX: #504550
RGB: (80,69,80)
#504550 contains red, green and blue colors in about the same proportion. Web safe color of #504550 is #663366 (or #636).
#504550 color RGB value is (80,69,80).
RGB: (80,69,80) (31%,27%,31%)
R 80 of 255 = 31%
G 69 of 255 = 27%
B 80 of 255 = 31%
R + G + B ~ 30%. #504550 is quite dark color.
R + G + B =
80 + 69 + 80 = 229 (100%)
R 80 of 229 ~ 34.93%
G 69 of 229 ~ 30.13%
B 80 of 229 ~ 34.93%
#504550 color CMYK value is (0,14,0,69).
CMYK: (0,14,0,69) C0M14Y0K69 (0%,14%,0%,69%) (0.00/0.14/0.00/0.69)
50 | 45 | 50 | |
---|---|---|---|
RGB | 80 | 69 | 80 |
HSL | 300° | 7.38% | 29.22% |
HSB/HSV | 300° | 13.75% | 31.37% |
CMYK | 0.00% | 13.75% | 0.00% |
68.63% |
HEX | 50 | 45 | 50 |
Decimal | 80 | 69 | 80 |
Binary | 1010000 | 1000101 | 1010000 |
Octal | 120 | 105 | 120 |
Examples of css and html codes for elements with #504550 color. Also use rgb(80,69,80) instead hex code.
.myTextColor { color: #504550; }
<p style="color:#504550">This sample text font color is #504550.</p>
This text font color is #504550.
.myBgColor { background-color: #504550; }
<div style="background-color:#504550">Inner text</div>
This div background color is #504550.
.myBorderColor { border: 1px solid #504550; }
<div style="border:3px solid #504550">Div</div>
This div border color is #504550.
.myOpacity80 { color: #504550; opacity: 0.8; }
<p style="color:#504550;opacity:0.8;">80%</p>
Text with #504550 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #504550;}
<p style="text-shadow: 3px 3px 1px #504550">Text here.</p>
This text has shadow with #504550 color.
.textShadow {text-shadow: 3px 3px 1px #504550, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #504550, 5px 5px 20px red">Text here.</p>
This text has shadow with #504550 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#504550, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#504550, Direction=45, Strength=4)">Text</p>
This text has shadow with #504550 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #504550; -webkit-box-shadow: 1px 1px 3px 2px #504550; box-shadow: 1px 1px 3px 2px #504550; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #504550; -webkit-box-shadow: 1px 1px 3px 2px #504550; box-shadow:1px 1px 3px 2px #504550;">
Div content here</div>
This text has color #504550 on black background.
This text has color #504550 on white background.
This text has black color on #504550 background.
This text has white color on #504550 background.