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