HEX: #48381F
RGB: (72,56,31)
#48381F contains red, green and blue colors in about the same proportion. Web safe color of #48381F is #333333 (or #333).
#48381F color RGB value is (72,56,31).
RGB: (72,56,31) (28%,22%,12%)
R 72 of 255 = 28%
G 56 of 255 = 22%
B 31 of 255 = 12%
R + G + B ~ 21%. #48381F is dark color.
R + G + B =
72 + 56 + 31 = 159 (100%)
R 72 of 159 ~ 45.28%
G 56 of 159 ~ 35.22%
B 31 of 159 ~ 19.5%
#48381F color CMYK value is (0,22,57,72).
CMYK: (0,22,57,72) C0M22Y57K72 (0%,22%,57%,72%) (0.00/0.22/0.57/0.72)
48 | 38 | 1F | |
---|---|---|---|
RGB | 72 | 56 | 31 |
HSL | 37° | 39.81% | 20.20% |
HSB/HSV | 37° | 56.94% | 28.24% |
CMYK | 0.00% | 22.22% | 56.94% |
71.76% |
HEX | 48 | 38 | 1F |
Decimal | 72 | 56 | 31 |
Binary | 1001000 | 111000 | 11111 |
Octal | 110 | 70 | 37 |
Examples of css and html codes for elements with #48381F color. Also use rgb(72,56,31) instead hex code.
.myTextColor { color: #48381F; }
<p style="color:#48381F">This sample text font color is #48381F.</p>
This text font color is #48381F.
.myBgColor { background-color: #48381F; }
<div style="background-color:#48381F">Inner text</div>
This div background color is #48381F.
.myBorderColor { border: 1px solid #48381F; }
<div style="border:3px solid #48381F">Div</div>
This div border color is #48381F.
.myOpacity80 { color: #48381F; opacity: 0.8; }
<p style="color:#48381F;opacity:0.8;">80%</p>
Text with #48381F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48381F;}
<p style="text-shadow: 3px 3px 1px #48381F">Text here.</p>
This text has shadow with #48381F color.
.textShadow {text-shadow: 3px 3px 1px #48381F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48381F, 5px 5px 20px red">Text here.</p>
This text has shadow with #48381F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48381F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48381F, Direction=45, Strength=4)">Text</p>
This text has shadow with #48381F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48381F; -webkit-box-shadow: 1px 1px 3px 2px #48381F; box-shadow: 1px 1px 3px 2px #48381F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48381F; -webkit-box-shadow: 1px 1px 3px 2px #48381F; box-shadow:1px 1px 3px 2px #48381F;">
Div content here</div>
This text has color #48381F on black background.
This text has color #48381F on white background.
This text has black color on #48381F background.
This text has white color on #48381F background.