HEX: #508248
RGB: (80,130,72)
#508248 contains red, green and blue colors in about the same proportion. Web safe color of #508248 is #669933 (or #693).
#508248 color RGB value is (80,130,72).
RGB: (80,130,72) (31%,51%,28%)
R 80 of 255 = 31%
G 130 of 255 = 51%
B 72 of 255 = 28%
R + G + B ~ 37%. #508248 is quite dark color.
R + G + B =
80 + 130 + 72 = 282 (100%)
R 80 of 282 ~ 28.37%
G 130 of 282 ~ 46.1%
B 72 of 282 ~ 25.53%
#508248 color CMYK value is (38,0,45,49).
CMYK: (38,0,45,49) C38M0Y45K49 (38%,0%,45%,49%) (0.38/0.00/0.45/0.49)
50 | 82 | 48 | |
---|---|---|---|
RGB | 80 | 130 | 72 |
HSL | 112° | 28.71% | 39.61% |
HSB/HSV | 112° | 44.62% | 50.98% |
CMYK | 38.46% | 0.00% | 44.62% |
49.02% |
HEX | 50 | 82 | 48 |
Decimal | 80 | 130 | 72 |
Binary | 1010000 | 10000010 | 1001000 |
Octal | 120 | 202 | 110 |
Examples of css and html codes for elements with #508248 color. Also use rgb(80,130,72) instead hex code.
.myTextColor { color: #508248; }
<p style="color:#508248">This sample text font color is #508248.</p>
This text font color is #508248.
.myBgColor { background-color: #508248; }
<div style="background-color:#508248">Inner text</div>
This div background color is #508248.
.myBorderColor { border: 1px solid #508248; }
<div style="border:3px solid #508248">Div</div>
This div border color is #508248.
.myOpacity80 { color: #508248; opacity: 0.8; }
<p style="color:#508248;opacity:0.8;">80%</p>
Text with #508248 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #508248;}
<p style="text-shadow: 3px 3px 1px #508248">Text here.</p>
This text has shadow with #508248 color.
.textShadow {text-shadow: 3px 3px 1px #508248, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #508248, 5px 5px 20px red">Text here.</p>
This text has shadow with #508248 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#508248, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#508248, Direction=45, Strength=4)">Text</p>
This text has shadow with #508248 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #508248; -webkit-box-shadow: 1px 1px 3px 2px #508248; box-shadow: 1px 1px 3px 2px #508248; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #508248; -webkit-box-shadow: 1px 1px 3px 2px #508248; box-shadow:1px 1px 3px 2px #508248;">
Div content here</div>
This text has color #508248 on black background.
This text has color #508248 on white background.
This text has black color on #508248 background.
This text has white color on #508248 background.