HEX: #48252D
RGB: (72,37,45)
#48252D contains red, green and blue colors in about the same proportion. Web safe color of #48252D is #333333 (or #333).
#48252D color RGB value is (72,37,45).
RGB: (72,37,45) (28%,15%,18%)
R 72 of 255 = 28%
G 37 of 255 = 15%
B 45 of 255 = 18%
R + G + B ~ 20%. #48252D is dark color.
R + G + B =
72 + 37 + 45 = 154 (100%)
R 72 of 154 ~ 46.75%
G 37 of 154 ~ 24.03%
B 45 of 154 ~ 29.22%
#48252D color CMYK value is (0,49,38,72).
CMYK: (0,49,38,72) C0M49Y38K72 (0%,49%,38%,72%) (0.00/0.49/0.38/0.72)
48 | 25 | 2D | |
---|---|---|---|
RGB | 72 | 37 | 45 |
HSL | 346° | 32.11% | 21.37% |
HSB/HSV | 346° | 48.61% | 28.24% |
CMYK | 0.00% | 48.61% | 37.50% |
71.76% |
HEX | 48 | 25 | 2D |
Decimal | 72 | 37 | 45 |
Binary | 1001000 | 100101 | 101101 |
Octal | 110 | 45 | 55 |
Examples of css and html codes for elements with #48252D color. Also use rgb(72,37,45) instead hex code.
.myTextColor { color: #48252D; }
<p style="color:#48252D">This sample text font color is #48252D.</p>
This text font color is #48252D.
.myBgColor { background-color: #48252D; }
<div style="background-color:#48252D">Inner text</div>
This div background color is #48252D.
.myBorderColor { border: 1px solid #48252D; }
<div style="border:3px solid #48252D">Div</div>
This div border color is #48252D.
.myOpacity80 { color: #48252D; opacity: 0.8; }
<p style="color:#48252D;opacity:0.8;">80%</p>
Text with #48252D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48252D;}
<p style="text-shadow: 3px 3px 1px #48252D">Text here.</p>
This text has shadow with #48252D color.
.textShadow {text-shadow: 3px 3px 1px #48252D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48252D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48252D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48252D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48252D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48252D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48252D; -webkit-box-shadow: 1px 1px 3px 2px #48252D; box-shadow: 1px 1px 3px 2px #48252D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48252D; -webkit-box-shadow: 1px 1px 3px 2px #48252D; box-shadow:1px 1px 3px 2px #48252D;">
Div content here</div>
This text has color #48252D on black background.
This text has color #48252D on white background.
This text has black color on #48252D background.
This text has white color on #48252D background.