HEX: #48465D
RGB: (72,70,93)
#48465D contains red, green and blue colors in about the same proportion. Web safe color of #48465D is #333366 (or #336).
#48465D color RGB value is (72,70,93).
RGB: (72,70,93) (28%,27%,36%)
R 72 of 255 = 28%
G 70 of 255 = 27%
B 93 of 255 = 36%
R + G + B ~ 30%. #48465D is quite dark color.
R + G + B =
72 + 70 + 93 = 235 (100%)
R 72 of 235 ~ 30.64%
G 70 of 235 ~ 29.79%
B 93 of 235 ~ 39.57%
#48465D color CMYK value is (23,25,0,64).
CMYK: (23,25,0,64) C23M25Y0K64 (23%,25%,0%,64%) (0.23/0.25/0.00/0.64)
48 | 46 | 5D | |
---|---|---|---|
RGB | 72 | 70 | 93 |
HSL | 245° | 14.11% | 31.96% |
HSB/HSV | 245° | 24.73% | 36.47% |
CMYK | 22.58% | 24.73% | 0.00% |
63.53% |
HEX | 48 | 46 | 5D |
Decimal | 72 | 70 | 93 |
Binary | 1001000 | 1000110 | 1011101 |
Octal | 110 | 106 | 135 |
Examples of css and html codes for elements with #48465D color. Also use rgb(72,70,93) instead hex code.
.myTextColor { color: #48465D; }
<p style="color:#48465D">This sample text font color is #48465D.</p>
This text font color is #48465D.
.myBgColor { background-color: #48465D; }
<div style="background-color:#48465D">Inner text</div>
This div background color is #48465D.
.myBorderColor { border: 1px solid #48465D; }
<div style="border:3px solid #48465D">Div</div>
This div border color is #48465D.
.myOpacity80 { color: #48465D; opacity: 0.8; }
<p style="color:#48465D;opacity:0.8;">80%</p>
Text with #48465D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48465D;}
<p style="text-shadow: 3px 3px 1px #48465D">Text here.</p>
This text has shadow with #48465D color.
.textShadow {text-shadow: 3px 3px 1px #48465D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48465D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48465D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48465D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48465D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48465D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48465D; -webkit-box-shadow: 1px 1px 3px 2px #48465D; box-shadow: 1px 1px 3px 2px #48465D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48465D; -webkit-box-shadow: 1px 1px 3px 2px #48465D; box-shadow:1px 1px 3px 2px #48465D;">
Div content here</div>
This text has color #48465D on black background.
This text has color #48465D on white background.
This text has black color on #48465D background.
This text has white color on #48465D background.