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