HEX: #4B1496
RGB: (75,20,150)
#4B1496 contains mainly blue color. Web safe color of #4B1496 is #330099 (or #309).
#4B1496 color RGB value is (75,20,150).
RGB: (75,20,150) (29%,8%,59%)
R 75 of 255 = 29%
G 20 of 255 = 8%
B 150 of 255 = 59%
R + G + B ~ 32%. #4B1496 is quite dark color.
R + G + B =
75 + 20 + 150 = 245 (100%)
R 75 of 245 ~ 30.61%
G 20 of 245 ~ 8.16%
B 150 of 245 ~ 61.22%
#4B1496 color CMYK value is (50,87,0,41).
CMYK: (50,87,0,41) C50M87Y0K41 (50%,87%,0%,41%) (0.50/0.87/0.00/0.41)
4B | 14 | 96 | |
---|---|---|---|
RGB | 75 | 20 | 150 |
HSL | 265° | 76.47% | 33.33% |
HSB/HSV | 265° | 86.67% | 58.82% |
CMYK | 50.00% | 86.67% | 0.00% |
41.18% |
HEX | 4B | 14 | 96 |
Decimal | 75 | 20 | 150 |
Binary | 1001011 | 10100 | 10010110 |
Octal | 113 | 24 | 226 |
Examples of css and html codes for elements with #4B1496 color. Also use rgb(75,20,150) instead hex code.
.myTextColor { color: #4B1496; }
<p style="color:#4B1496">This sample text font color is #4B1496.</p>
This text font color is #4B1496.
.myBgColor { background-color: #4B1496; }
<div style="background-color:#4B1496">Inner text</div>
This div background color is #4B1496.
.myBorderColor { border: 1px solid #4B1496; }
<div style="border:3px solid #4B1496">Div</div>
This div border color is #4B1496.
.myOpacity80 { color: #4B1496; opacity: 0.8; }
<p style="color:#4B1496;opacity:0.8;">80%</p>
Text with #4B1496 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4B1496;}
<p style="text-shadow: 3px 3px 1px #4B1496">Text here.</p>
This text has shadow with #4B1496 color.
.textShadow {text-shadow: 3px 3px 1px #4B1496, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4B1496, 5px 5px 20px red">Text here.</p>
This text has shadow with #4B1496 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4B1496, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4B1496, Direction=45, Strength=4)">Text</p>
This text has shadow with #4B1496 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4B1496; -webkit-box-shadow: 1px 1px 3px 2px #4B1496; box-shadow: 1px 1px 3px 2px #4B1496; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4B1496; -webkit-box-shadow: 1px 1px 3px 2px #4B1496; box-shadow:1px 1px 3px 2px #4B1496;">
Div content here</div>
This text has color #4B1496 on black background.
This text has color #4B1496 on white background.
This text has black color on #4B1496 background.
This text has white color on #4B1496 background.