HEX: #48393A
RGB: (72,57,58)
#48393A contains red, green and blue colors in about the same proportion. Web safe color of #48393A is #333333 (or #333).
#48393A color RGB value is (72,57,58).
RGB: (72,57,58) (28%,22%,23%)
R 72 of 255 = 28%
G 57 of 255 = 22%
B 58 of 255 = 23%
R + G + B ~ 24%. #48393A is dark color.
R + G + B =
72 + 57 + 58 = 187 (100%)
R 72 of 187 ~ 38.5%
G 57 of 187 ~ 30.48%
B 58 of 187 ~ 31.02%
#48393A color CMYK value is (0,21,19,72).
CMYK: (0,21,19,72) C0M21Y19K72 (0%,21%,19%,72%) (0.00/0.21/0.19/0.72)
48 | 39 | 3A | |
---|---|---|---|
RGB | 72 | 57 | 58 |
HSL | 356° | 11.63% | 25.29% |
HSB/HSV | 356° | 20.83% | 28.24% |
CMYK | 0.00% | 20.83% | 19.44% |
71.76% |
HEX | 48 | 39 | 3A |
Decimal | 72 | 57 | 58 |
Binary | 1001000 | 111001 | 111010 |
Octal | 110 | 71 | 72 |
Examples of css and html codes for elements with #48393A color. Also use rgb(72,57,58) instead hex code.
.myTextColor { color: #48393A; }
<p style="color:#48393A">This sample text font color is #48393A.</p>
This text font color is #48393A.
.myBgColor { background-color: #48393A; }
<div style="background-color:#48393A">Inner text</div>
This div background color is #48393A.
.myBorderColor { border: 1px solid #48393A; }
<div style="border:3px solid #48393A">Div</div>
This div border color is #48393A.
.myOpacity80 { color: #48393A; opacity: 0.8; }
<p style="color:#48393A;opacity:0.8;">80%</p>
Text with #48393A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48393A;}
<p style="text-shadow: 3px 3px 1px #48393A">Text here.</p>
This text has shadow with #48393A color.
.textShadow {text-shadow: 3px 3px 1px #48393A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48393A, 5px 5px 20px red">Text here.</p>
This text has shadow with #48393A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48393A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48393A, Direction=45, Strength=4)">Text</p>
This text has shadow with #48393A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48393A; -webkit-box-shadow: 1px 1px 3px 2px #48393A; box-shadow: 1px 1px 3px 2px #48393A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48393A; -webkit-box-shadow: 1px 1px 3px 2px #48393A; box-shadow:1px 1px 3px 2px #48393A;">
Div content here</div>
This text has color #48393A on black background.
This text has color #48393A on white background.
This text has black color on #48393A background.
This text has white color on #48393A background.