HEX: #50545D
RGB: (80,84,93)
#50545D contains red, green and blue colors in about the same proportion. Web safe color of #50545D is #666666 (or #666).
#50545D color RGB value is (80,84,93).
RGB: (80,84,93) (31%,33%,36%)
R 80 of 255 = 31%
G 84 of 255 = 33%
B 93 of 255 = 36%
R + G + B ~ 33%. #50545D is quite dark color.
R + G + B =
80 + 84 + 93 = 257 (100%)
R 80 of 257 ~ 31.13%
G 84 of 257 ~ 32.68%
B 93 of 257 ~ 36.19%
#50545D color CMYK value is (14,10,0,64).
CMYK: (14,10,0,64) C14M10Y0K64 (14%,10%,0%,64%) (0.14/0.10/0.00/0.64)
50 | 54 | 5D | |
---|---|---|---|
RGB | 80 | 84 | 93 |
HSL | 222° | 7.51% | 33.92% |
HSB/HSV | 222° | 13.98% | 36.47% |
CMYK | 13.98% | 9.68% | 0.00% |
63.53% |
HEX | 50 | 54 | 5D |
Decimal | 80 | 84 | 93 |
Binary | 1010000 | 1010100 | 1011101 |
Octal | 120 | 124 | 135 |
Examples of css and html codes for elements with #50545D color. Also use rgb(80,84,93) instead hex code.
.myTextColor { color: #50545D; }
<p style="color:#50545D">This sample text font color is #50545D.</p>
This text font color is #50545D.
.myBgColor { background-color: #50545D; }
<div style="background-color:#50545D">Inner text</div>
This div background color is #50545D.
.myBorderColor { border: 1px solid #50545D; }
<div style="border:3px solid #50545D">Div</div>
This div border color is #50545D.
.myOpacity80 { color: #50545D; opacity: 0.8; }
<p style="color:#50545D;opacity:0.8;">80%</p>
Text with #50545D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50545D;}
<p style="text-shadow: 3px 3px 1px #50545D">Text here.</p>
This text has shadow with #50545D color.
.textShadow {text-shadow: 3px 3px 1px #50545D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50545D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50545D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50545D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50545D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50545D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50545D; -webkit-box-shadow: 1px 1px 3px 2px #50545D; box-shadow: 1px 1px 3px 2px #50545D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50545D; -webkit-box-shadow: 1px 1px 3px 2px #50545D; box-shadow:1px 1px 3px 2px #50545D;">
Div content here</div>
This text has color #50545D on black background.
This text has color #50545D on white background.
This text has black color on #50545D background.
This text has white color on #50545D background.