HEX: #50684F
RGB: (80,104,79)
#50684F contains red, green and blue colors in about the same proportion. Web safe color of #50684F is #666666 (or #666).
#50684F color RGB value is (80,104,79).
RGB: (80,104,79) (31%,41%,31%)
R 80 of 255 = 31%
G 104 of 255 = 41%
B 79 of 255 = 31%
R + G + B ~ 34%. #50684F is quite dark color.
R + G + B =
80 + 104 + 79 = 263 (100%)
R 80 of 263 ~ 30.42%
G 104 of 263 ~ 39.54%
B 79 of 263 ~ 30.04%
#50684F color CMYK value is (23,0,24,59).
CMYK: (23,0,24,59) C23M0Y24K59 (23%,0%,24%,59%) (0.23/0.00/0.24/0.59)
50 | 68 | 4F | |
---|---|---|---|
RGB | 80 | 104 | 79 |
HSL | 118° | 13.66% | 35.88% |
HSB/HSV | 118° | 24.04% | 40.78% |
CMYK | 23.08% | 0.00% | 24.04% |
59.22% |
HEX | 50 | 68 | 4F |
Decimal | 80 | 104 | 79 |
Binary | 1010000 | 1101000 | 1001111 |
Octal | 120 | 150 | 117 |
Examples of css and html codes for elements with #50684F color. Also use rgb(80,104,79) instead hex code.
.myTextColor { color: #50684F; }
<p style="color:#50684F">This sample text font color is #50684F.</p>
This text font color is #50684F.
.myBgColor { background-color: #50684F; }
<div style="background-color:#50684F">Inner text</div>
This div background color is #50684F.
.myBorderColor { border: 1px solid #50684F; }
<div style="border:3px solid #50684F">Div</div>
This div border color is #50684F.
.myOpacity80 { color: #50684F; opacity: 0.8; }
<p style="color:#50684F;opacity:0.8;">80%</p>
Text with #50684F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50684F;}
<p style="text-shadow: 3px 3px 1px #50684F">Text here.</p>
This text has shadow with #50684F color.
.textShadow {text-shadow: 3px 3px 1px #50684F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50684F, 5px 5px 20px red">Text here.</p>
This text has shadow with #50684F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50684F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50684F, Direction=45, Strength=4)">Text</p>
This text has shadow with #50684F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50684F; -webkit-box-shadow: 1px 1px 3px 2px #50684F; box-shadow: 1px 1px 3px 2px #50684F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50684F; -webkit-box-shadow: 1px 1px 3px 2px #50684F; box-shadow:1px 1px 3px 2px #50684F;">
Div content here</div>
This text has color #50684F on black background.
This text has color #50684F on white background.
This text has black color on #50684F background.
This text has white color on #50684F background.