HEX: #494B91
RGB: (73,75,145)
#494B91 contains mainly blue color. Web safe color of #494B91 is #333399 (or #339).
#494B91 color RGB value is (73,75,145).
RGB: (73,75,145) (29%,29%,57%)
R 73 of 255 = 29%
G 75 of 255 = 29%
B 145 of 255 = 57%
R + G + B ~ 38%. #494B91 is quite dark color.
R + G + B =
73 + 75 + 145 = 293 (100%)
R 73 of 293 ~ 24.91%
G 75 of 293 ~ 25.6%
B 145 of 293 ~ 49.49%
#494B91 color CMYK value is (50,48,0,43).
CMYK: (50,48,0,43) C50M48Y0K43 (50%,48%,0%,43%) (0.50/0.48/0.00/0.43)
49 | 4B | 91 | |
---|---|---|---|
RGB | 73 | 75 | 145 |
HSL | 238° | 33.03% | 42.75% |
HSB/HSV | 238° | 49.66% | 56.86% |
CMYK | 49.66% | 48.28% | 0.00% |
43.14% |
HEX | 49 | 4B | 91 |
Decimal | 73 | 75 | 145 |
Binary | 1001001 | 1001011 | 10010001 |
Octal | 111 | 113 | 221 |
Examples of css and html codes for elements with #494B91 color. Also use rgb(73,75,145) instead hex code.
.myTextColor { color: #494B91; }
<p style="color:#494B91">This sample text font color is #494B91.</p>
This text font color is #494B91.
.myBgColor { background-color: #494B91; }
<div style="background-color:#494B91">Inner text</div>
This div background color is #494B91.
.myBorderColor { border: 1px solid #494B91; }
<div style="border:3px solid #494B91">Div</div>
This div border color is #494B91.
.myOpacity80 { color: #494B91; opacity: 0.8; }
<p style="color:#494B91;opacity:0.8;">80%</p>
Text with #494B91 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #494B91;}
<p style="text-shadow: 3px 3px 1px #494B91">Text here.</p>
This text has shadow with #494B91 color.
.textShadow {text-shadow: 3px 3px 1px #494B91, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #494B91, 5px 5px 20px red">Text here.</p>
This text has shadow with #494B91 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#494B91, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#494B91, Direction=45, Strength=4)">Text</p>
This text has shadow with #494B91 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #494B91; -webkit-box-shadow: 1px 1px 3px 2px #494B91; box-shadow: 1px 1px 3px 2px #494B91; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #494B91; -webkit-box-shadow: 1px 1px 3px 2px #494B91; box-shadow:1px 1px 3px 2px #494B91;">
Div content here</div>
This text has color #494B91 on black background.
This text has color #494B91 on white background.
This text has black color on #494B91 background.
This text has white color on #494B91 background.