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