HEX: #474146
RGB: (71,65,70)
#474146 contains red, green and blue colors in about the same proportion. Web safe color of #474146 is #333333 (or #333).
#474146 color RGB value is (71,65,70).
RGB: (71,65,70) (28%,25%,27%)
R 71 of 255 = 28%
G 65 of 255 = 25%
B 70 of 255 = 27%
R + G + B ~ 27%. #474146 is quite dark color.
R + G + B =
71 + 65 + 70 = 206 (100%)
R 71 of 206 ~ 34.47%
G 65 of 206 ~ 31.55%
B 70 of 206 ~ 33.98%
#474146 color CMYK value is (0,8,1,72).
CMYK: (0,8,1,72) C0M8Y1K72 (0%,8%,1%,72%) (0.00/0.08/0.01/0.72)
47 | 41 | 46 | |
---|---|---|---|
RGB | 71 | 65 | 70 |
HSL | 310° | 4.41% | 26.67% |
HSB/HSV | 310° | 8.45% | 27.84% |
CMYK | 0.00% | 8.45% | 1.41% |
72.16% |
HEX | 47 | 41 | 46 |
Decimal | 71 | 65 | 70 |
Binary | 1000111 | 1000001 | 1000110 |
Octal | 107 | 101 | 106 |
Examples of css and html codes for elements with #474146 color. Also use rgb(71,65,70) instead hex code.
.myTextColor { color: #474146; }
<p style="color:#474146">This sample text font color is #474146.</p>
This text font color is #474146.
.myBgColor { background-color: #474146; }
<div style="background-color:#474146">Inner text</div>
This div background color is #474146.
.myBorderColor { border: 1px solid #474146; }
<div style="border:3px solid #474146">Div</div>
This div border color is #474146.
.myOpacity80 { color: #474146; opacity: 0.8; }
<p style="color:#474146;opacity:0.8;">80%</p>
Text with #474146 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #474146;}
<p style="text-shadow: 3px 3px 1px #474146">Text here.</p>
This text has shadow with #474146 color.
.textShadow {text-shadow: 3px 3px 1px #474146, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #474146, 5px 5px 20px red">Text here.</p>
This text has shadow with #474146 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#474146, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#474146, Direction=45, Strength=4)">Text</p>
This text has shadow with #474146 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #474146; -webkit-box-shadow: 1px 1px 3px 2px #474146; box-shadow: 1px 1px 3px 2px #474146; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #474146; -webkit-box-shadow: 1px 1px 3px 2px #474146; box-shadow:1px 1px 3px 2px #474146;">
Div content here</div>
This text has color #474146 on black background.
This text has color #474146 on white background.
This text has black color on #474146 background.
This text has white color on #474146 background.