HEX: #50814D
RGB: (80,129,77)
#50814D contains red, green and blue colors in about the same proportion. Web safe color of #50814D is #669933 (or #693).
#50814D color RGB value is (80,129,77).
RGB: (80,129,77) (31%,51%,30%)
R 80 of 255 = 31%
G 129 of 255 = 51%
B 77 of 255 = 30%
R + G + B ~ 37%. #50814D is quite dark color.
R + G + B =
80 + 129 + 77 = 286 (100%)
R 80 of 286 ~ 27.97%
G 129 of 286 ~ 45.1%
B 77 of 286 ~ 26.92%
#50814D color CMYK value is (38,0,40,49).
CMYK: (38,0,40,49) C38M0Y40K49 (38%,0%,40%,49%) (0.38/0.00/0.40/0.49)
50 | 81 | 4D | |
---|---|---|---|
RGB | 80 | 129 | 77 |
HSL | 117° | 25.24% | 40.39% |
HSB/HSV | 117° | 40.31% | 50.59% |
CMYK | 37.98% | 0.00% | 40.31% |
49.41% |
HEX | 50 | 81 | 4D |
Decimal | 80 | 129 | 77 |
Binary | 1010000 | 10000001 | 1001101 |
Octal | 120 | 201 | 115 |
Examples of css and html codes for elements with #50814D color. Also use rgb(80,129,77) instead hex code.
.myTextColor { color: #50814D; }
<p style="color:#50814D">This sample text font color is #50814D.</p>
This text font color is #50814D.
.myBgColor { background-color: #50814D; }
<div style="background-color:#50814D">Inner text</div>
This div background color is #50814D.
.myBorderColor { border: 1px solid #50814D; }
<div style="border:3px solid #50814D">Div</div>
This div border color is #50814D.
.myOpacity80 { color: #50814D; opacity: 0.8; }
<p style="color:#50814D;opacity:0.8;">80%</p>
Text with #50814D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50814D;}
<p style="text-shadow: 3px 3px 1px #50814D">Text here.</p>
This text has shadow with #50814D color.
.textShadow {text-shadow: 3px 3px 1px #50814D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50814D, 5px 5px 20px red">Text here.</p>
This text has shadow with #50814D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50814D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50814D, Direction=45, Strength=4)">Text</p>
This text has shadow with #50814D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50814D; -webkit-box-shadow: 1px 1px 3px 2px #50814D; box-shadow: 1px 1px 3px 2px #50814D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50814D; -webkit-box-shadow: 1px 1px 3px 2px #50814D; box-shadow:1px 1px 3px 2px #50814D;">
Div content here</div>
This text has color #50814D on black background.
This text has color #50814D on white background.
This text has black color on #50814D background.
This text has white color on #50814D background.