HEX: #495EBA
RGB: (73,94,186)
#495EBA contains mainly blue color. Web safe color of #495EBA is #3366CC (or #36C).
#495EBA color RGB value is (73,94,186).
RGB: (73,94,186) (29%,37%,73%)
R 73 of 255 = 29%
G 94 of 255 = 37%
B 186 of 255 = 73%
R + G + B ~ 46%. #495EBA is middle color (not dark and not light).
R + G + B =
73 + 94 + 186 = 353 (100%)
R 73 of 353 ~ 20.68%
G 94 of 353 ~ 26.63%
B 186 of 353 ~ 52.69%
#495EBA color CMYK value is (61,49,0,27).
CMYK: (61,49,0,27) C61M49Y0K27 (61%,49%,0%,27%) (0.61/0.49/0.00/0.27)
49 | 5E | BA | |
---|---|---|---|
RGB | 73 | 94 | 186 |
HSL | 229° | 45.02% | 50.78% |
HSB/HSV | 229° | 60.75% | 72.94% |
CMYK | 60.75% | 49.46% | 0.00% |
27.06% |
HEX | 49 | 5E | BA |
Decimal | 73 | 94 | 186 |
Binary | 1001001 | 1011110 | 10111010 |
Octal | 111 | 136 | 272 |
Examples of css and html codes for elements with #495EBA color. Also use rgb(73,94,186) instead hex code.
.myTextColor { color: #495EBA; }
<p style="color:#495EBA">This sample text font color is #495EBA.</p>
This text font color is #495EBA.
.myBgColor { background-color: #495EBA; }
<div style="background-color:#495EBA">Inner text</div>
This div background color is #495EBA.
.myBorderColor { border: 1px solid #495EBA; }
<div style="border:3px solid #495EBA">Div</div>
This div border color is #495EBA.
.myOpacity80 { color: #495EBA; opacity: 0.8; }
<p style="color:#495EBA;opacity:0.8;">80%</p>
Text with #495EBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #495EBA;}
<p style="text-shadow: 3px 3px 1px #495EBA">Text here.</p>
This text has shadow with #495EBA color.
.textShadow {text-shadow: 3px 3px 1px #495EBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #495EBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #495EBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#495EBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#495EBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #495EBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #495EBA; -webkit-box-shadow: 1px 1px 3px 2px #495EBA; box-shadow: 1px 1px 3px 2px #495EBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #495EBA; -webkit-box-shadow: 1px 1px 3px 2px #495EBA; box-shadow:1px 1px 3px 2px #495EBA;">
Div content here</div>
This text has color #495EBA on black background.
This text has color #495EBA on white background.
This text has black color on #495EBA background.
This text has white color on #495EBA background.