HEX: #48533E
RGB: (72,83,62)
#48533E contains red, green and blue colors in about the same proportion. Web safe color of #48533E is #336633 (or #363).
#48533E color RGB value is (72,83,62).
RGB: (72,83,62) (28%,33%,24%)
R 72 of 255 = 28%
G 83 of 255 = 33%
B 62 of 255 = 24%
R + G + B ~ 28%. #48533E is quite dark color.
R + G + B =
72 + 83 + 62 = 217 (100%)
R 72 of 217 ~ 33.18%
G 83 of 217 ~ 38.25%
B 62 of 217 ~ 28.57%
#48533E color CMYK value is (13,0,25,67).
CMYK: (13,0,25,67) C13M0Y25K67 (13%,0%,25%,67%) (0.13/0.00/0.25/0.67)
48 | 53 | 3E | |
---|---|---|---|
RGB | 72 | 83 | 62 |
HSL | 91° | 14.48% | 28.43% |
HSB/HSV | 91° | 25.30% | 32.55% |
CMYK | 13.25% | 0.00% | 25.30% |
67.45% |
HEX | 48 | 53 | 3E |
Decimal | 72 | 83 | 62 |
Binary | 1001000 | 1010011 | 111110 |
Octal | 110 | 123 | 76 |
Examples of css and html codes for elements with #48533E color. Also use rgb(72,83,62) instead hex code.
.myTextColor { color: #48533E; }
<p style="color:#48533E">This sample text font color is #48533E.</p>
This text font color is #48533E.
.myBgColor { background-color: #48533E; }
<div style="background-color:#48533E">Inner text</div>
This div background color is #48533E.
.myBorderColor { border: 1px solid #48533E; }
<div style="border:3px solid #48533E">Div</div>
This div border color is #48533E.
.myOpacity80 { color: #48533E; opacity: 0.8; }
<p style="color:#48533E;opacity:0.8;">80%</p>
Text with #48533E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48533E;}
<p style="text-shadow: 3px 3px 1px #48533E">Text here.</p>
This text has shadow with #48533E color.
.textShadow {text-shadow: 3px 3px 1px #48533E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48533E, 5px 5px 20px red">Text here.</p>
This text has shadow with #48533E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48533E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48533E, Direction=45, Strength=4)">Text</p>
This text has shadow with #48533E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48533E; -webkit-box-shadow: 1px 1px 3px 2px #48533E; box-shadow: 1px 1px 3px 2px #48533E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48533E; -webkit-box-shadow: 1px 1px 3px 2px #48533E; box-shadow:1px 1px 3px 2px #48533E;">
Div content here</div>
This text has color #48533E on black background.
This text has color #48533E on white background.
This text has black color on #48533E background.
This text has white color on #48533E background.