HEX: #464752
RGB: (70,71,82)
#464752 contains red, green and blue colors in about the same proportion. Web safe color of #464752 is #333366 (or #336).
#464752 color RGB value is (70,71,82).
RGB: (70,71,82) (27%,28%,32%)
R 70 of 255 = 27%
G 71 of 255 = 28%
B 82 of 255 = 32%
R + G + B ~ 29%. #464752 is quite dark color.
R + G + B =
70 + 71 + 82 = 223 (100%)
R 70 of 223 ~ 31.39%
G 71 of 223 ~ 31.84%
B 82 of 223 ~ 36.77%
#464752 color CMYK value is (15,13,0,68).
CMYK: (15,13,0,68) C15M13Y0K68 (15%,13%,0%,68%) (0.15/0.13/0.00/0.68)
46 | 47 | 52 | |
---|---|---|---|
RGB | 70 | 71 | 82 |
HSL | 235° | 7.89% | 29.80% |
HSB/HSV | 235° | 14.63% | 32.16% |
CMYK | 14.63% | 13.41% | 0.00% |
67.84% |
HEX | 46 | 47 | 52 |
Decimal | 70 | 71 | 82 |
Binary | 1000110 | 1000111 | 1010010 |
Octal | 106 | 107 | 122 |
Examples of css and html codes for elements with #464752 color. Also use rgb(70,71,82) instead hex code.
.myTextColor { color: #464752; }
<p style="color:#464752">This sample text font color is #464752.</p>
This text font color is #464752.
.myBgColor { background-color: #464752; }
<div style="background-color:#464752">Inner text</div>
This div background color is #464752.
.myBorderColor { border: 1px solid #464752; }
<div style="border:3px solid #464752">Div</div>
This div border color is #464752.
.myOpacity80 { color: #464752; opacity: 0.8; }
<p style="color:#464752;opacity:0.8;">80%</p>
Text with #464752 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #464752;}
<p style="text-shadow: 3px 3px 1px #464752">Text here.</p>
This text has shadow with #464752 color.
.textShadow {text-shadow: 3px 3px 1px #464752, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #464752, 5px 5px 20px red">Text here.</p>
This text has shadow with #464752 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#464752, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#464752, Direction=45, Strength=4)">Text</p>
This text has shadow with #464752 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #464752; -webkit-box-shadow: 1px 1px 3px 2px #464752; box-shadow: 1px 1px 3px 2px #464752; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #464752; -webkit-box-shadow: 1px 1px 3px 2px #464752; box-shadow:1px 1px 3px 2px #464752;">
Div content here</div>
This text has color #464752 on black background.
This text has color #464752 on white background.
This text has black color on #464752 background.
This text has white color on #464752 background.