HEX: #424855
RGB: (66,72,85)
#424855 contains red, green and blue colors in about the same proportion. Web safe color of #424855 is #333366 (or #336).
#424855 color RGB value is (66,72,85).
RGB: (66,72,85) (26%,28%,33%)
R 66 of 255 = 26%
G 72 of 255 = 28%
B 85 of 255 = 33%
R + G + B ~ 29%. #424855 is quite dark color.
R + G + B =
66 + 72 + 85 = 223 (100%)
R 66 of 223 ~ 29.6%
G 72 of 223 ~ 32.29%
B 85 of 223 ~ 38.12%
#424855 color CMYK value is (22,15,0,67).
CMYK: (22,15,0,67) C22M15Y0K67 (22%,15%,0%,67%) (0.22/0.15/0.00/0.67)
42 | 48 | 55 | |
---|---|---|---|
RGB | 66 | 72 | 85 |
HSL | 221° | 12.58% | 29.61% |
HSB/HSV | 221° | 22.35% | 33.33% |
CMYK | 22.35% | 15.29% | 0.00% |
66.67% |
HEX | 42 | 48 | 55 |
Decimal | 66 | 72 | 85 |
Binary | 1000010 | 1001000 | 1010101 |
Octal | 102 | 110 | 125 |
Examples of css and html codes for elements with #424855 color. Also use rgb(66,72,85) instead hex code.
.myTextColor { color: #424855; }
<p style="color:#424855">This sample text font color is #424855.</p>
This text font color is #424855.
.myBgColor { background-color: #424855; }
<div style="background-color:#424855">Inner text</div>
This div background color is #424855.
.myBorderColor { border: 1px solid #424855; }
<div style="border:3px solid #424855">Div</div>
This div border color is #424855.
.myOpacity80 { color: #424855; opacity: 0.8; }
<p style="color:#424855;opacity:0.8;">80%</p>
Text with #424855 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #424855;}
<p style="text-shadow: 3px 3px 1px #424855">Text here.</p>
This text has shadow with #424855 color.
.textShadow {text-shadow: 3px 3px 1px #424855, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #424855, 5px 5px 20px red">Text here.</p>
This text has shadow with #424855 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#424855, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#424855, Direction=45, Strength=4)">Text</p>
This text has shadow with #424855 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #424855; -webkit-box-shadow: 1px 1px 3px 2px #424855; box-shadow: 1px 1px 3px 2px #424855; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #424855; -webkit-box-shadow: 1px 1px 3px 2px #424855; box-shadow:1px 1px 3px 2px #424855;">
Div content here</div>
This text has color #424855 on black background.
This text has color #424855 on white background.
This text has black color on #424855 background.
This text has white color on #424855 background.