HEX: #48456D
RGB: (72,69,109)
#48456D contains red, green and blue colors in about the same proportion. Web safe color of #48456D is #333366 (or #336).
#48456D color RGB value is (72,69,109).
RGB: (72,69,109) (28%,27%,43%)
R 72 of 255 = 28%
G 69 of 255 = 27%
B 109 of 255 = 43%
R + G + B ~ 33%. #48456D is quite dark color.
R + G + B =
72 + 69 + 109 = 250 (100%)
R 72 of 250 ~ 28.8%
G 69 of 250 ~ 27.6%
B 109 of 250 ~ 43.6%
#48456D color CMYK value is (34,37,0,57).
CMYK: (34,37,0,57) C34M37Y0K57 (34%,37%,0%,57%) (0.34/0.37/0.00/0.57)
48 | 45 | 6D | |
---|---|---|---|
RGB | 72 | 69 | 109 |
HSL | 245° | 22.47% | 34.90% |
HSB/HSV | 245° | 36.70% | 42.75% |
CMYK | 33.94% | 36.70% | 0.00% |
57.25% |
HEX | 48 | 45 | 6D |
Decimal | 72 | 69 | 109 |
Binary | 1001000 | 1000101 | 1101101 |
Octal | 110 | 105 | 155 |
Examples of css and html codes for elements with #48456D color. Also use rgb(72,69,109) instead hex code.
.myTextColor { color: #48456D; }
<p style="color:#48456D">This sample text font color is #48456D.</p>
This text font color is #48456D.
.myBgColor { background-color: #48456D; }
<div style="background-color:#48456D">Inner text</div>
This div background color is #48456D.
.myBorderColor { border: 1px solid #48456D; }
<div style="border:3px solid #48456D">Div</div>
This div border color is #48456D.
.myOpacity80 { color: #48456D; opacity: 0.8; }
<p style="color:#48456D;opacity:0.8;">80%</p>
Text with #48456D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48456D;}
<p style="text-shadow: 3px 3px 1px #48456D">Text here.</p>
This text has shadow with #48456D color.
.textShadow {text-shadow: 3px 3px 1px #48456D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48456D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48456D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48456D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48456D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48456D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48456D; -webkit-box-shadow: 1px 1px 3px 2px #48456D; box-shadow: 1px 1px 3px 2px #48456D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48456D; -webkit-box-shadow: 1px 1px 3px 2px #48456D; box-shadow:1px 1px 3px 2px #48456D;">
Div content here</div>
This text has color #48456D on black background.
This text has color #48456D on white background.
This text has black color on #48456D background.
This text has white color on #48456D background.