HEX: #48206B
RGB: (72,32,107)
#48206B contains mainly red and blue colors. Web safe color of #48206B is #333366 (or #336).
#48206B color RGB value is (72,32,107).
RGB: (72,32,107) (28%,13%,42%)
R 72 of 255 = 28%
G 32 of 255 = 13%
B 107 of 255 = 42%
R + G + B ~ 28%. #48206B is quite dark color.
R + G + B =
72 + 32 + 107 = 211 (100%)
R 72 of 211 ~ 34.12%
G 32 of 211 ~ 15.17%
B 107 of 211 ~ 50.71%
#48206B color CMYK value is (33,70,0,58).
CMYK: (33,70,0,58) C33M70Y0K58 (33%,70%,0%,58%) (0.33/0.70/0.00/0.58)
48 | 20 | 6B | |
---|---|---|---|
RGB | 72 | 32 | 107 |
HSL | 272° | 53.96% | 27.25% |
HSB/HSV | 272° | 70.09% | 41.96% |
CMYK | 32.71% | 70.09% | 0.00% |
58.04% |
HEX | 48 | 20 | 6B |
Decimal | 72 | 32 | 107 |
Binary | 1001000 | 100000 | 1101011 |
Octal | 110 | 40 | 153 |
Examples of css and html codes for elements with #48206B color. Also use rgb(72,32,107) instead hex code.
.myTextColor { color: #48206B; }
<p style="color:#48206B">This sample text font color is #48206B.</p>
This text font color is #48206B.
.myBgColor { background-color: #48206B; }
<div style="background-color:#48206B">Inner text</div>
This div background color is #48206B.
.myBorderColor { border: 1px solid #48206B; }
<div style="border:3px solid #48206B">Div</div>
This div border color is #48206B.
.myOpacity80 { color: #48206B; opacity: 0.8; }
<p style="color:#48206B;opacity:0.8;">80%</p>
Text with #48206B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48206B;}
<p style="text-shadow: 3px 3px 1px #48206B">Text here.</p>
This text has shadow with #48206B color.
.textShadow {text-shadow: 3px 3px 1px #48206B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48206B, 5px 5px 20px red">Text here.</p>
This text has shadow with #48206B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48206B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48206B, Direction=45, Strength=4)">Text</p>
This text has shadow with #48206B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48206B; -webkit-box-shadow: 1px 1px 3px 2px #48206B; box-shadow: 1px 1px 3px 2px #48206B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48206B; -webkit-box-shadow: 1px 1px 3px 2px #48206B; box-shadow:1px 1px 3px 2px #48206B;">
Div content here</div>
This text has color #48206B on black background.
This text has color #48206B on white background.
This text has black color on #48206B background.
This text has white color on #48206B background.