HEX: #47514D
RGB: (71,81,77)
#47514D contains red, green and blue colors in about the same proportion. Web safe color of #47514D is #336633 (or #363).
#47514D color RGB value is (71,81,77).
RGB: (71,81,77) (28%,32%,30%)
R 71 of 255 = 28%
G 81 of 255 = 32%
B 77 of 255 = 30%
R + G + B ~ 30%. #47514D is quite dark color.
R + G + B =
71 + 81 + 77 = 229 (100%)
R 71 of 229 ~ 31%
G 81 of 229 ~ 35.37%
B 77 of 229 ~ 33.62%
#47514D color CMYK value is (12,0,5,68).
CMYK: (12,0,5,68) C12M0Y5K68 (12%,0%,5%,68%) (0.12/0.00/0.05/0.68)
47 | 51 | 4D | |
---|---|---|---|
RGB | 71 | 81 | 77 |
HSL | 156° | 6.58% | 29.80% |
HSB/HSV | 156° | 12.35% | 31.76% |
CMYK | 12.35% | 0.00% | 4.94% |
68.24% |
HEX | 47 | 51 | 4D |
Decimal | 71 | 81 | 77 |
Binary | 1000111 | 1010001 | 1001101 |
Octal | 107 | 121 | 115 |
Examples of css and html codes for elements with #47514D color. Also use rgb(71,81,77) instead hex code.
.myTextColor { color: #47514D; }
<p style="color:#47514D">This sample text font color is #47514D.</p>
This text font color is #47514D.
.myBgColor { background-color: #47514D; }
<div style="background-color:#47514D">Inner text</div>
This div background color is #47514D.
.myBorderColor { border: 1px solid #47514D; }
<div style="border:3px solid #47514D">Div</div>
This div border color is #47514D.
.myOpacity80 { color: #47514D; opacity: 0.8; }
<p style="color:#47514D;opacity:0.8;">80%</p>
Text with #47514D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47514D;}
<p style="text-shadow: 3px 3px 1px #47514D">Text here.</p>
This text has shadow with #47514D color.
.textShadow {text-shadow: 3px 3px 1px #47514D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47514D, 5px 5px 20px red">Text here.</p>
This text has shadow with #47514D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47514D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47514D, Direction=45, Strength=4)">Text</p>
This text has shadow with #47514D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47514D; -webkit-box-shadow: 1px 1px 3px 2px #47514D; box-shadow: 1px 1px 3px 2px #47514D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47514D; -webkit-box-shadow: 1px 1px 3px 2px #47514D; box-shadow:1px 1px 3px 2px #47514D;">
Div content here</div>
This text has color #47514D on black background.
This text has color #47514D on white background.
This text has black color on #47514D background.
This text has white color on #47514D background.