HEX: #424040
RGB: (66,64,64)
#424040 contains red, green and blue colors in about the same proportion. Web safe color of #424040 is #333333 (or #333).
#424040 color RGB value is (66,64,64).
RGB: (66,64,64) (26%,25%,25%)
R 66 of 255 = 26%
G 64 of 255 = 25%
B 64 of 255 = 25%
R + G + B ~ 25%. #424040 is quite dark color.
R + G + B =
66 + 64 + 64 = 194 (100%)
R 66 of 194 ~ 34.02%
G 64 of 194 ~ 32.99%
B 64 of 194 ~ 32.99%
#424040 color CMYK value is (0,3,3,74).
CMYK: (0,3,3,74) C0M3Y3K74 (0%,3%,3%,74%) (0.00/0.03/0.03/0.74)
42 | 40 | 40 | |
---|---|---|---|
RGB | 66 | 64 | 64 |
HSL | 0° | 1.54% | 25.49% |
HSB/HSV | 0° | 3.03% | 25.88% |
CMYK | 0.00% | 3.03% | 3.03% |
74.12% |
HEX | 42 | 40 | 40 |
Decimal | 66 | 64 | 64 |
Binary | 1000010 | 1000000 | 1000000 |
Octal | 102 | 100 | 100 |
Examples of css and html codes for elements with #424040 color. Also use rgb(66,64,64) instead hex code.
.myTextColor { color: #424040; }
<p style="color:#424040">This sample text font color is #424040.</p>
This text font color is #424040.
.myBgColor { background-color: #424040; }
<div style="background-color:#424040">Inner text</div>
This div background color is #424040.
.myBorderColor { border: 1px solid #424040; }
<div style="border:3px solid #424040">Div</div>
This div border color is #424040.
.myOpacity80 { color: #424040; opacity: 0.8; }
<p style="color:#424040;opacity:0.8;">80%</p>
Text with #424040 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #424040;}
<p style="text-shadow: 3px 3px 1px #424040">Text here.</p>
This text has shadow with #424040 color.
.textShadow {text-shadow: 3px 3px 1px #424040, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #424040, 5px 5px 20px red">Text here.</p>
This text has shadow with #424040 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#424040, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#424040, Direction=45, Strength=4)">Text</p>
This text has shadow with #424040 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #424040; -webkit-box-shadow: 1px 1px 3px 2px #424040; box-shadow: 1px 1px 3px 2px #424040; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #424040; -webkit-box-shadow: 1px 1px 3px 2px #424040; box-shadow:1px 1px 3px 2px #424040;">
Div content here</div>
This text has color #424040 on black background.
This text has color #424040 on white background.
This text has black color on #424040 background.
This text has white color on #424040 background.