HEX: #424660
RGB: (66,70,96)
#424660 contains red, green and blue colors in about the same proportion. Web safe color of #424660 is #333366 (or #336).
#424660 color RGB value is (66,70,96).
RGB: (66,70,96) (26%,27%,38%)
R 66 of 255 = 26%
G 70 of 255 = 27%
B 96 of 255 = 38%
R + G + B ~ 30%. #424660 is quite dark color.
R + G + B =
66 + 70 + 96 = 232 (100%)
R 66 of 232 ~ 28.45%
G 70 of 232 ~ 30.17%
B 96 of 232 ~ 41.38%
#424660 color CMYK value is (31,27,0,62).
CMYK: (31,27,0,62) C31M27Y0K62 (31%,27%,0%,62%) (0.31/0.27/0.00/0.62)
42 | 46 | 60 | |
---|---|---|---|
RGB | 66 | 70 | 96 |
HSL | 232° | 18.52% | 31.76% |
HSB/HSV | 232° | 31.25% | 37.65% |
CMYK | 31.25% | 27.08% | 0.00% |
62.35% |
HEX | 42 | 46 | 60 |
Decimal | 66 | 70 | 96 |
Binary | 1000010 | 1000110 | 1100000 |
Octal | 102 | 106 | 140 |
Examples of css and html codes for elements with #424660 color. Also use rgb(66,70,96) instead hex code.
.myTextColor { color: #424660; }
<p style="color:#424660">This sample text font color is #424660.</p>
This text font color is #424660.
.myBgColor { background-color: #424660; }
<div style="background-color:#424660">Inner text</div>
This div background color is #424660.
.myBorderColor { border: 1px solid #424660; }
<div style="border:3px solid #424660">Div</div>
This div border color is #424660.
.myOpacity80 { color: #424660; opacity: 0.8; }
<p style="color:#424660;opacity:0.8;">80%</p>
Text with #424660 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #424660;}
<p style="text-shadow: 3px 3px 1px #424660">Text here.</p>
This text has shadow with #424660 color.
.textShadow {text-shadow: 3px 3px 1px #424660, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #424660, 5px 5px 20px red">Text here.</p>
This text has shadow with #424660 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#424660, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#424660, Direction=45, Strength=4)">Text</p>
This text has shadow with #424660 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #424660; -webkit-box-shadow: 1px 1px 3px 2px #424660; box-shadow: 1px 1px 3px 2px #424660; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #424660; -webkit-box-shadow: 1px 1px 3px 2px #424660; box-shadow:1px 1px 3px 2px #424660;">
Div content here</div>
This text has color #424660 on black background.
This text has color #424660 on white background.
This text has black color on #424660 background.
This text has white color on #424660 background.