HEX: #426090
RGB: (66,96,144)
#426090 contains mainly green and blue colors. Web safe color of #426090 is #336699 (or #369).
#426090 color RGB value is (66,96,144).
RGB: (66,96,144) (26%,38%,56%)
R 66 of 255 = 26%
G 96 of 255 = 38%
B 144 of 255 = 56%
R + G + B ~ 40%. #426090 is middle color (not dark and not light).
R + G + B =
66 + 96 + 144 = 306 (100%)
R 66 of 306 ~ 21.57%
G 96 of 306 ~ 31.37%
B 144 of 306 ~ 47.06%
#426090 color CMYK value is (54,33,0,44).
CMYK: (54,33,0,44) C54M33Y0K44 (54%,33%,0%,44%) (0.54/0.33/0.00/0.44)
42 | 60 | 90 | |
---|---|---|---|
RGB | 66 | 96 | 144 |
HSL | 217° | 37.14% | 41.18% |
HSB/HSV | 217° | 54.17% | 56.47% |
CMYK | 54.17% | 33.33% | 0.00% |
43.53% |
HEX | 42 | 60 | 90 |
Decimal | 66 | 96 | 144 |
Binary | 1000010 | 1100000 | 10010000 |
Octal | 102 | 140 | 220 |
Examples of css and html codes for elements with #426090 color. Also use rgb(66,96,144) instead hex code.
.myTextColor { color: #426090; }
<p style="color:#426090">This sample text font color is #426090.</p>
This text font color is #426090.
.myBgColor { background-color: #426090; }
<div style="background-color:#426090">Inner text</div>
This div background color is #426090.
.myBorderColor { border: 1px solid #426090; }
<div style="border:3px solid #426090">Div</div>
This div border color is #426090.
.myOpacity80 { color: #426090; opacity: 0.8; }
<p style="color:#426090;opacity:0.8;">80%</p>
Text with #426090 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #426090;}
<p style="text-shadow: 3px 3px 1px #426090">Text here.</p>
This text has shadow with #426090 color.
.textShadow {text-shadow: 3px 3px 1px #426090, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #426090, 5px 5px 20px red">Text here.</p>
This text has shadow with #426090 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#426090, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#426090, Direction=45, Strength=4)">Text</p>
This text has shadow with #426090 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #426090; -webkit-box-shadow: 1px 1px 3px 2px #426090; box-shadow: 1px 1px 3px 2px #426090; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #426090; -webkit-box-shadow: 1px 1px 3px 2px #426090; box-shadow:1px 1px 3px 2px #426090;">
Div content here</div>
This text has color #426090 on black background.
This text has color #426090 on white background.
This text has black color on #426090 background.
This text has white color on #426090 background.