HEX: #494B98
RGB: (73,75,152)
#494B98 contains mainly blue color. Web safe color of #494B98 is #333399 (or #339).
#494B98 color RGB value is (73,75,152).
RGB: (73,75,152) (29%,29%,60%)
R 73 of 255 = 29%
G 75 of 255 = 29%
B 152 of 255 = 60%
R + G + B ~ 39%. #494B98 is quite dark color.
R + G + B =
73 + 75 + 152 = 300 (100%)
R 73 of 300 ~ 24.33%
G 75 of 300 ~ 25%
B 152 of 300 ~ 50.67%
#494B98 color CMYK value is (52,51,0,40).
CMYK: (52,51,0,40) C52M51Y0K40 (52%,51%,0%,40%) (0.52/0.51/0.00/0.40)
49 | 4B | 98 | |
---|---|---|---|
RGB | 73 | 75 | 152 |
HSL | 238° | 35.11% | 44.12% |
HSB/HSV | 238° | 51.97% | 59.61% |
CMYK | 51.97% | 50.66% | 0.00% |
40.39% |
HEX | 49 | 4B | 98 |
Decimal | 73 | 75 | 152 |
Binary | 1001001 | 1001011 | 10011000 |
Octal | 111 | 113 | 230 |
Examples of css and html codes for elements with #494B98 color. Also use rgb(73,75,152) instead hex code.
.myTextColor { color: #494B98; }
<p style="color:#494B98">This sample text font color is #494B98.</p>
This text font color is #494B98.
.myBgColor { background-color: #494B98; }
<div style="background-color:#494B98">Inner text</div>
This div background color is #494B98.
.myBorderColor { border: 1px solid #494B98; }
<div style="border:3px solid #494B98">Div</div>
This div border color is #494B98.
.myOpacity80 { color: #494B98; opacity: 0.8; }
<p style="color:#494B98;opacity:0.8;">80%</p>
Text with #494B98 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #494B98;}
<p style="text-shadow: 3px 3px 1px #494B98">Text here.</p>
This text has shadow with #494B98 color.
.textShadow {text-shadow: 3px 3px 1px #494B98, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #494B98, 5px 5px 20px red">Text here.</p>
This text has shadow with #494B98 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#494B98, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#494B98, Direction=45, Strength=4)">Text</p>
This text has shadow with #494B98 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #494B98; -webkit-box-shadow: 1px 1px 3px 2px #494B98; box-shadow: 1px 1px 3px 2px #494B98; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #494B98; -webkit-box-shadow: 1px 1px 3px 2px #494B98; box-shadow:1px 1px 3px 2px #494B98;">
Div content here</div>
This text has color #494B98 on black background.
This text has color #494B98 on white background.
This text has black color on #494B98 background.
This text has white color on #494B98 background.