HEX: #4B468D
RGB: (75,70,141)
#4B468D contains mainly blue color. Web safe color of #4B468D is #333399 (or #339).
#4B468D color RGB value is (75,70,141).
RGB: (75,70,141) (29%,27%,55%)
R 75 of 255 = 29%
G 70 of 255 = 27%
B 141 of 255 = 55%
R + G + B ~ 37%. #4B468D is quite dark color.
R + G + B =
75 + 70 + 141 = 286 (100%)
R 75 of 286 ~ 26.22%
G 70 of 286 ~ 24.48%
B 141 of 286 ~ 49.3%
#4B468D color CMYK value is (47,50,0,45).
CMYK: (47,50,0,45) C47M50Y0K45 (47%,50%,0%,45%) (0.47/0.50/0.00/0.45)
4B | 46 | 8D | |
---|---|---|---|
RGB | 75 | 70 | 141 |
HSL | 244° | 33.65% | 41.37% |
HSB/HSV | 244° | 50.35% | 55.29% |
CMYK | 46.81% | 50.35% | 0.00% |
44.71% |
HEX | 4B | 46 | 8D |
Decimal | 75 | 70 | 141 |
Binary | 1001011 | 1000110 | 10001101 |
Octal | 113 | 106 | 215 |
Examples of css and html codes for elements with #4B468D color. Also use rgb(75,70,141) instead hex code.
.myTextColor { color: #4B468D; }
<p style="color:#4B468D">This sample text font color is #4B468D.</p>
This text font color is #4B468D.
.myBgColor { background-color: #4B468D; }
<div style="background-color:#4B468D">Inner text</div>
This div background color is #4B468D.
.myBorderColor { border: 1px solid #4B468D; }
<div style="border:3px solid #4B468D">Div</div>
This div border color is #4B468D.
.myOpacity80 { color: #4B468D; opacity: 0.8; }
<p style="color:#4B468D;opacity:0.8;">80%</p>
Text with #4B468D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4B468D;}
<p style="text-shadow: 3px 3px 1px #4B468D">Text here.</p>
This text has shadow with #4B468D color.
.textShadow {text-shadow: 3px 3px 1px #4B468D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4B468D, 5px 5px 20px red">Text here.</p>
This text has shadow with #4B468D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4B468D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4B468D, Direction=45, Strength=4)">Text</p>
This text has shadow with #4B468D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4B468D; -webkit-box-shadow: 1px 1px 3px 2px #4B468D; box-shadow: 1px 1px 3px 2px #4B468D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4B468D; -webkit-box-shadow: 1px 1px 3px 2px #4B468D; box-shadow:1px 1px 3px 2px #4B468D;">
Div content here</div>
This text has color #4B468D on black background.
This text has color #4B468D on white background.
This text has black color on #4B468D background.
This text has white color on #4B468D background.