HEX: #50514D
RGB: (80,81,77)
#50514D contains red, green and blue colors in about the same proportion. Web safe color of #50514D is #666633 (or #663).
#50514D color RGB value is (80,81,77).
RGB: (80,81,77) (31%,32%,30%)
R 80 of 255 = 31%
G 81 of 255 = 32%
B 77 of 255 = 30%
R + G + B ~ 31%. #50514D is quite dark color.
R + G + B =
80 + 81 + 77 = 238 (100%)
R 80 of 238 ~ 33.61%
G 81 of 238 ~ 34.03%
B 77 of 238 ~ 32.35%
#50514D color CMYK value is (1,0,5,68).
CMYK: (1,0,5,68) C1M0Y5K68 (1%,0%,5%,68%) (0.01/0.00/0.05/0.68)
50 | 51 | 4D | |
---|---|---|---|
RGB | 80 | 81 | 77 |
HSL | 75° | 2.53% | 30.98% |
HSB/HSV | 75° | 4.94% | 31.76% |
CMYK | 1.23% | 0.00% | 4.94% |
68.24% |
HEX | 50 | 51 | 4D |
Decimal | 80 | 81 | 77 |
Binary | 1010000 | 1010001 | 1001101 |
Octal | 120 | 121 | 115 |
Examples of css and html codes for elements with #50514D color. Also use rgb(80,81,77) instead hex code.
.myTextColor { color: #50514D; }
<p style="color:#50514D">This sample text font color is #50514D.</p>
This text font color is #50514D.
.myBgColor { background-color: #50514D; }
<div style="background-color:#50514D">Inner text</div>
This div background color is #50514D.
.myBorderColor { border: 1px solid #50514D; }
<div style="border:3px solid #50514D">Div</div>
This div border color is #50514D.
.myOpacity80 { color: #50514D; opacity: 0.8; }
<p style="color:#50514D;opacity:0.8;">80%</p>
Text with #50514D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50514D;}
<p style="text-shadow: 3px 3px 1px #50514D">Text here.</p>
This text has shadow with #50514D color.
.textShadow {text-shadow: 3px 3px 1px #50514D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50514D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50514D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50514D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50514D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50514D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50514D; -webkit-box-shadow: 1px 1px 3px 2px #50514D; box-shadow: 1px 1px 3px 2px #50514D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50514D; -webkit-box-shadow: 1px 1px 3px 2px #50514D; box-shadow:1px 1px 3px 2px #50514D;">
Div content here</div>
This text has color #50514D on black background.
This text has color #50514D on white background.
This text has black color on #50514D background.
This text has white color on #50514D background.