HEX: #464440
RGB: (70,68,64)
#464440 contains red, green and blue colors in about the same proportion. Web safe color of #464440 is #333333 (or #333).
#464440 color RGB value is (70,68,64).
RGB: (70,68,64) (27%,27%,25%)
R 70 of 255 = 27%
G 68 of 255 = 27%
B 64 of 255 = 25%
R + G + B ~ 26%. #464440 is quite dark color.
R + G + B =
70 + 68 + 64 = 202 (100%)
R 70 of 202 ~ 34.65%
G 68 of 202 ~ 33.66%
B 64 of 202 ~ 31.68%
#464440 color CMYK value is (0,3,9,73).
CMYK: (0,3,9,73) C0M3Y9K73 (0%,3%,9%,73%) (0.00/0.03/0.09/0.73)
46 | 44 | 40 | |
---|---|---|---|
RGB | 70 | 68 | 64 |
HSL | 40° | 4.48% | 26.27% |
HSB/HSV | 40° | 8.57% | 27.45% |
CMYK | 0.00% | 2.86% | 8.57% |
72.55% |
HEX | 46 | 44 | 40 |
Decimal | 70 | 68 | 64 |
Binary | 1000110 | 1000100 | 1000000 |
Octal | 106 | 104 | 100 |
Examples of css and html codes for elements with #464440 color. Also use rgb(70,68,64) instead hex code.
.myTextColor { color: #464440; }
<p style="color:#464440">This sample text font color is #464440.</p>
This text font color is #464440.
.myBgColor { background-color: #464440; }
<div style="background-color:#464440">Inner text</div>
This div background color is #464440.
.myBorderColor { border: 1px solid #464440; }
<div style="border:3px solid #464440">Div</div>
This div border color is #464440.
.myOpacity80 { color: #464440; opacity: 0.8; }
<p style="color:#464440;opacity:0.8;">80%</p>
Text with #464440 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #464440;}
<p style="text-shadow: 3px 3px 1px #464440">Text here.</p>
This text has shadow with #464440 color.
.textShadow {text-shadow: 3px 3px 1px #464440, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #464440, 5px 5px 20px red">Text here.</p>
This text has shadow with #464440 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#464440, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#464440, Direction=45, Strength=4)">Text</p>
This text has shadow with #464440 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #464440; -webkit-box-shadow: 1px 1px 3px 2px #464440; box-shadow: 1px 1px 3px 2px #464440; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #464440; -webkit-box-shadow: 1px 1px 3px 2px #464440; box-shadow:1px 1px 3px 2px #464440;">
Div content here</div>
This text has color #464440 on black background.
This text has color #464440 on white background.
This text has black color on #464440 background.
This text has white color on #464440 background.