HEX: #47523D
RGB: (71,82,61)
#47523D contains red, green and blue colors in about the same proportion. Web safe color of #47523D is #336633 (or #363).
#47523D color RGB value is (71,82,61).
RGB: (71,82,61) (28%,32%,24%)
R 71 of 255 = 28%
G 82 of 255 = 32%
B 61 of 255 = 24%
R + G + B ~ 28%. #47523D is quite dark color.
R + G + B =
71 + 82 + 61 = 214 (100%)
R 71 of 214 ~ 33.18%
G 82 of 214 ~ 38.32%
B 61 of 214 ~ 28.5%
#47523D color CMYK value is (13,0,26,68).
CMYK: (13,0,26,68) C13M0Y26K68 (13%,0%,26%,68%) (0.13/0.00/0.26/0.68)
47 | 52 | 3D | |
---|---|---|---|
RGB | 71 | 82 | 61 |
HSL | 91° | 14.69% | 28.04% |
HSB/HSV | 91° | 25.61% | 32.16% |
CMYK | 13.41% | 0.00% | 25.61% |
67.84% |
HEX | 47 | 52 | 3D |
Decimal | 71 | 82 | 61 |
Binary | 1000111 | 1010010 | 111101 |
Octal | 107 | 122 | 75 |
Examples of css and html codes for elements with #47523D color. Also use rgb(71,82,61) instead hex code.
.myTextColor { color: #47523D; }
<p style="color:#47523D">This sample text font color is #47523D.</p>
This text font color is #47523D.
.myBgColor { background-color: #47523D; }
<div style="background-color:#47523D">Inner text</div>
This div background color is #47523D.
.myBorderColor { border: 1px solid #47523D; }
<div style="border:3px solid #47523D">Div</div>
This div border color is #47523D.
.myOpacity80 { color: #47523D; opacity: 0.8; }
<p style="color:#47523D;opacity:0.8;">80%</p>
Text with #47523D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47523D;}
<p style="text-shadow: 3px 3px 1px #47523D">Text here.</p>
This text has shadow with #47523D color.
.textShadow {text-shadow: 3px 3px 1px #47523D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47523D, 5px 5px 20px red">Text here.</p>
This text has shadow with #47523D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47523D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47523D, Direction=45, Strength=4)">Text</p>
This text has shadow with #47523D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47523D; -webkit-box-shadow: 1px 1px 3px 2px #47523D; box-shadow: 1px 1px 3px 2px #47523D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47523D; -webkit-box-shadow: 1px 1px 3px 2px #47523D; box-shadow:1px 1px 3px 2px #47523D;">
Div content here</div>
This text has color #47523D on black background.
This text has color #47523D on white background.
This text has black color on #47523D background.
This text has white color on #47523D background.