HEX: #40496B
RGB: (64,73,107)
#40496B contains red, green and blue colors in about the same proportion. Web safe color of #40496B is #333366 (or #336).
#40496B color RGB value is (64,73,107).
RGB: (64,73,107) (25%,29%,42%)
R 64 of 255 = 25%
G 73 of 255 = 29%
B 107 of 255 = 42%
R + G + B ~ 32%. #40496B is quite dark color.
R + G + B =
64 + 73 + 107 = 244 (100%)
R 64 of 244 ~ 26.23%
G 73 of 244 ~ 29.92%
B 107 of 244 ~ 43.85%
#40496B color CMYK value is (40,32,0,58).
CMYK: (40,32,0,58) C40M32Y0K58 (40%,32%,0%,58%) (0.40/0.32/0.00/0.58)
40 | 49 | 6B | |
---|---|---|---|
RGB | 64 | 73 | 107 |
HSL | 227° | 25.15% | 33.53% |
HSB/HSV | 227° | 40.19% | 41.96% |
CMYK | 40.19% | 31.78% | 0.00% |
58.04% |
HEX | 40 | 49 | 6B |
Decimal | 64 | 73 | 107 |
Binary | 1000000 | 1001001 | 1101011 |
Octal | 100 | 111 | 153 |
Examples of css and html codes for elements with #40496B color. Also use rgb(64,73,107) instead hex code.
.myTextColor { color: #40496B; }
<p style="color:#40496B">This sample text font color is #40496B.</p>
This text font color is #40496B.
.myBgColor { background-color: #40496B; }
<div style="background-color:#40496B">Inner text</div>
This div background color is #40496B.
.myBorderColor { border: 1px solid #40496B; }
<div style="border:3px solid #40496B">Div</div>
This div border color is #40496B.
.myOpacity80 { color: #40496B; opacity: 0.8; }
<p style="color:#40496B;opacity:0.8;">80%</p>
Text with #40496B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #40496B;}
<p style="text-shadow: 3px 3px 1px #40496B">Text here.</p>
This text has shadow with #40496B color.
.textShadow {text-shadow: 3px 3px 1px #40496B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #40496B, 5px 5px 20px red">Text here.</p>
This text has shadow with #40496B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#40496B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#40496B, Direction=45, Strength=4)">Text</p>
This text has shadow with #40496B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #40496B; -webkit-box-shadow: 1px 1px 3px 2px #40496B; box-shadow: 1px 1px 3px 2px #40496B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #40496B; -webkit-box-shadow: 1px 1px 3px 2px #40496B; box-shadow:1px 1px 3px 2px #40496B;">
Div content here</div>
This text has color #40496B on black background.
This text has color #40496B on white background.
This text has black color on #40496B background.
This text has white color on #40496B background.