HEX: #48384F
RGB: (72,56,79)
#48384F contains red, green and blue colors in about the same proportion. Web safe color of #48384F is #333366 (or #336).
#48384F color RGB value is (72,56,79).
RGB: (72,56,79) (28%,22%,31%)
R 72 of 255 = 28%
G 56 of 255 = 22%
B 79 of 255 = 31%
R + G + B ~ 27%. #48384F is quite dark color.
R + G + B =
72 + 56 + 79 = 207 (100%)
R 72 of 207 ~ 34.78%
G 56 of 207 ~ 27.05%
B 79 of 207 ~ 38.16%
#48384F color CMYK value is (9,29,0,69).
CMYK: (9,29,0,69) C9M29Y0K69 (9%,29%,0%,69%) (0.09/0.29/0.00/0.69)
48 | 38 | 4F | |
---|---|---|---|
RGB | 72 | 56 | 79 |
HSL | 282° | 17.04% | 26.47% |
HSB/HSV | 282° | 29.11% | 30.98% |
CMYK | 8.86% | 29.11% | 0.00% |
69.02% |
HEX | 48 | 38 | 4F |
Decimal | 72 | 56 | 79 |
Binary | 1001000 | 111000 | 1001111 |
Octal | 110 | 70 | 117 |
Examples of css and html codes for elements with #48384F color. Also use rgb(72,56,79) instead hex code.
.myTextColor { color: #48384F; }
<p style="color:#48384F">This sample text font color is #48384F.</p>
This text font color is #48384F.
.myBgColor { background-color: #48384F; }
<div style="background-color:#48384F">Inner text</div>
This div background color is #48384F.
.myBorderColor { border: 1px solid #48384F; }
<div style="border:3px solid #48384F">Div</div>
This div border color is #48384F.
.myOpacity80 { color: #48384F; opacity: 0.8; }
<p style="color:#48384F;opacity:0.8;">80%</p>
Text with #48384F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48384F;}
<p style="text-shadow: 3px 3px 1px #48384F">Text here.</p>
This text has shadow with #48384F color.
.textShadow {text-shadow: 3px 3px 1px #48384F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48384F, 5px 5px 20px red">Text here.</p>
This text has shadow with #48384F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48384F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48384F, Direction=45, Strength=4)">Text</p>
This text has shadow with #48384F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48384F; -webkit-box-shadow: 1px 1px 3px 2px #48384F; box-shadow: 1px 1px 3px 2px #48384F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48384F; -webkit-box-shadow: 1px 1px 3px 2px #48384F; box-shadow:1px 1px 3px 2px #48384F;">
Div content here</div>
This text has color #48384F on black background.
This text has color #48384F on white background.
This text has black color on #48384F background.
This text has white color on #48384F background.