HEX: #48704D
RGB: (72,112,77)
#48704D contains red, green and blue colors in about the same proportion. Web safe color of #48704D is #336633 (or #363).
#48704D color RGB value is (72,112,77).
RGB: (72,112,77) (28%,44%,30%)
R 72 of 255 = 28%
G 112 of 255 = 44%
B 77 of 255 = 30%
R + G + B ~ 34%. #48704D is quite dark color.
R + G + B =
72 + 112 + 77 = 261 (100%)
R 72 of 261 ~ 27.59%
G 112 of 261 ~ 42.91%
B 77 of 261 ~ 29.5%
#48704D color CMYK value is (36,0,31,56).
CMYK: (36,0,31,56) C36M0Y31K56 (36%,0%,31%,56%) (0.36/0.00/0.31/0.56)
48 | 70 | 4D | |
---|---|---|---|
RGB | 72 | 112 | 77 |
HSL | 128° | 21.74% | 36.08% |
HSB/HSV | 128° | 35.71% | 43.92% |
CMYK | 35.71% | 0.00% | 31.25% |
56.08% |
HEX | 48 | 70 | 4D |
Decimal | 72 | 112 | 77 |
Binary | 1001000 | 1110000 | 1001101 |
Octal | 110 | 160 | 115 |
Examples of css and html codes for elements with #48704D color. Also use rgb(72,112,77) instead hex code.
.myTextColor { color: #48704D; }
<p style="color:#48704D">This sample text font color is #48704D.</p>
This text font color is #48704D.
.myBgColor { background-color: #48704D; }
<div style="background-color:#48704D">Inner text</div>
This div background color is #48704D.
.myBorderColor { border: 1px solid #48704D; }
<div style="border:3px solid #48704D">Div</div>
This div border color is #48704D.
.myOpacity80 { color: #48704D; opacity: 0.8; }
<p style="color:#48704D;opacity:0.8;">80%</p>
Text with #48704D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48704D;}
<p style="text-shadow: 3px 3px 1px #48704D">Text here.</p>
This text has shadow with #48704D color.
.textShadow {text-shadow: 3px 3px 1px #48704D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48704D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48704D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48704D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48704D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48704D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48704D; -webkit-box-shadow: 1px 1px 3px 2px #48704D; box-shadow: 1px 1px 3px 2px #48704D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48704D; -webkit-box-shadow: 1px 1px 3px 2px #48704D; box-shadow:1px 1px 3px 2px #48704D;">
Div content here</div>
This text has color #48704D on black background.
This text has color #48704D on white background.
This text has black color on #48704D background.
This text has white color on #48704D background.