HEX: #48803E
RGB: (72,128,62)
#48803E contains mainly red and green colors. Web safe color of #48803E is #336633 (or #363).
#48803E color RGB value is (72,128,62).
RGB: (72,128,62) (28%,50%,24%)
R 72 of 255 = 28%
G 128 of 255 = 50%
B 62 of 255 = 24%
R + G + B ~ 34%. #48803E is quite dark color.
R + G + B =
72 + 128 + 62 = 262 (100%)
R 72 of 262 ~ 27.48%
G 128 of 262 ~ 48.85%
B 62 of 262 ~ 23.66%
#48803E color CMYK value is (44,0,52,50).
CMYK: (44,0,52,50) C44M0Y52K50 (44%,0%,52%,50%) (0.44/0.00/0.52/0.50)
48 | 80 | 3E | |
---|---|---|---|
RGB | 72 | 128 | 62 |
HSL | 111° | 34.74% | 37.25% |
HSB/HSV | 111° | 51.56% | 50.20% |
CMYK | 43.75% | 0.00% | 51.56% |
49.80% |
HEX | 48 | 80 | 3E |
Decimal | 72 | 128 | 62 |
Binary | 1001000 | 10000000 | 111110 |
Octal | 110 | 200 | 76 |
Examples of css and html codes for elements with #48803E color. Also use rgb(72,128,62) instead hex code.
.myTextColor { color: #48803E; }
<p style="color:#48803E">This sample text font color is #48803E.</p>
This text font color is #48803E.
.myBgColor { background-color: #48803E; }
<div style="background-color:#48803E">Inner text</div>
This div background color is #48803E.
.myBorderColor { border: 1px solid #48803E; }
<div style="border:3px solid #48803E">Div</div>
This div border color is #48803E.
.myOpacity80 { color: #48803E; opacity: 0.8; }
<p style="color:#48803E;opacity:0.8;">80%</p>
Text with #48803E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48803E;}
<p style="text-shadow: 3px 3px 1px #48803E">Text here.</p>
This text has shadow with #48803E color.
.textShadow {text-shadow: 3px 3px 1px #48803E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48803E, 5px 5px 20px red">Text here.</p>
This text has shadow with #48803E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48803E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48803E, Direction=45, Strength=4)">Text</p>
This text has shadow with #48803E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48803E; -webkit-box-shadow: 1px 1px 3px 2px #48803E; box-shadow: 1px 1px 3px 2px #48803E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48803E; -webkit-box-shadow: 1px 1px 3px 2px #48803E; box-shadow:1px 1px 3px 2px #48803E;">
Div content here</div>
This text has color #48803E on black background.
This text has color #48803E on white background.
This text has black color on #48803E background.
This text has white color on #48803E background.