HEX: #494FA3
RGB: (73,79,163)
#494FA3 contains mainly blue color. Web safe color of #494FA3 is #336699 (or #369).
#494FA3 color RGB value is (73,79,163).
RGB: (73,79,163) (29%,31%,64%)
R 73 of 255 = 29%
G 79 of 255 = 31%
B 163 of 255 = 64%
R + G + B ~ 41%. #494FA3 is middle color (not dark and not light).
R + G + B =
73 + 79 + 163 = 315 (100%)
R 73 of 315 ~ 23.17%
G 79 of 315 ~ 25.08%
B 163 of 315 ~ 51.75%
#494FA3 color CMYK value is (55,52,0,36).
CMYK: (55,52,0,36) C55M52Y0K36 (55%,52%,0%,36%) (0.55/0.52/0.00/0.36)
49 | 4F | A3 | |
---|---|---|---|
RGB | 73 | 79 | 163 |
HSL | 236° | 38.14% | 46.27% |
HSB/HSV | 236° | 55.21% | 63.92% |
CMYK | 55.21% | 51.53% | 0.00% |
36.08% |
HEX | 49 | 4F | A3 |
Decimal | 73 | 79 | 163 |
Binary | 1001001 | 1001111 | 10100011 |
Octal | 111 | 117 | 243 |
Examples of css and html codes for elements with #494FA3 color. Also use rgb(73,79,163) instead hex code.
.myTextColor { color: #494FA3; }
<p style="color:#494FA3">This sample text font color is #494FA3.</p>
This text font color is #494FA3.
.myBgColor { background-color: #494FA3; }
<div style="background-color:#494FA3">Inner text</div>
This div background color is #494FA3.
.myBorderColor { border: 1px solid #494FA3; }
<div style="border:3px solid #494FA3">Div</div>
This div border color is #494FA3.
.myOpacity80 { color: #494FA3; opacity: 0.8; }
<p style="color:#494FA3;opacity:0.8;">80%</p>
Text with #494FA3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #494FA3;}
<p style="text-shadow: 3px 3px 1px #494FA3">Text here.</p>
This text has shadow with #494FA3 color.
.textShadow {text-shadow: 3px 3px 1px #494FA3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #494FA3, 5px 5px 20px red">Text here.</p>
This text has shadow with #494FA3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#494FA3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#494FA3, Direction=45, Strength=4)">Text</p>
This text has shadow with #494FA3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #494FA3; -webkit-box-shadow: 1px 1px 3px 2px #494FA3; box-shadow: 1px 1px 3px 2px #494FA3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #494FA3; -webkit-box-shadow: 1px 1px 3px 2px #494FA3; box-shadow:1px 1px 3px 2px #494FA3;">
Div content here</div>
This text has color #494FA3 on black background.
This text has color #494FA3 on white background.
This text has black color on #494FA3 background.
This text has white color on #494FA3 background.