HEX: #47343B
RGB: (71,52,59)
#47343B contains red, green and blue colors in about the same proportion. Web safe color of #47343B is #333333 (or #333).
#47343B color RGB value is (71,52,59).
RGB: (71,52,59) (28%,20%,23%)
R 71 of 255 = 28%
G 52 of 255 = 20%
B 59 of 255 = 23%
R + G + B ~ 24%. #47343B is dark color.
R + G + B =
71 + 52 + 59 = 182 (100%)
R 71 of 182 ~ 39.01%
G 52 of 182 ~ 28.57%
B 59 of 182 ~ 32.42%
#47343B color CMYK value is (0,27,17,72).
CMYK: (0,27,17,72) C0M27Y17K72 (0%,27%,17%,72%) (0.00/0.27/0.17/0.72)
47 | 34 | 3B | |
---|---|---|---|
RGB | 71 | 52 | 59 |
HSL | 338° | 15.45% | 24.12% |
HSB/HSV | 338° | 26.76% | 27.84% |
CMYK | 0.00% | 26.76% | 16.90% |
72.16% |
HEX | 47 | 34 | 3B |
Decimal | 71 | 52 | 59 |
Binary | 1000111 | 110100 | 111011 |
Octal | 107 | 64 | 73 |
Examples of css and html codes for elements with #47343B color. Also use rgb(71,52,59) instead hex code.
.myTextColor { color: #47343B; }
<p style="color:#47343B">This sample text font color is #47343B.</p>
This text font color is #47343B.
.myBgColor { background-color: #47343B; }
<div style="background-color:#47343B">Inner text</div>
This div background color is #47343B.
.myBorderColor { border: 1px solid #47343B; }
<div style="border:3px solid #47343B">Div</div>
This div border color is #47343B.
.myOpacity80 { color: #47343B; opacity: 0.8; }
<p style="color:#47343B;opacity:0.8;">80%</p>
Text with #47343B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47343B;}
<p style="text-shadow: 3px 3px 1px #47343B">Text here.</p>
This text has shadow with #47343B color.
.textShadow {text-shadow: 3px 3px 1px #47343B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47343B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47343B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47343B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47343B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47343B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47343B; -webkit-box-shadow: 1px 1px 3px 2px #47343B; box-shadow: 1px 1px 3px 2px #47343B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47343B; -webkit-box-shadow: 1px 1px 3px 2px #47343B; box-shadow:1px 1px 3px 2px #47343B;">
Div content here</div>
This text has color #47343B on black background.
This text has color #47343B on white background.
This text has black color on #47343B background.
This text has white color on #47343B background.