HEX: #47743D
RGB: (71,116,61)
#47743D contains red, green and blue colors in about the same proportion. Web safe color of #47743D is #336633 (or #363).
#47743D color RGB value is (71,116,61).
RGB: (71,116,61) (28%,45%,24%)
R 71 of 255 = 28%
G 116 of 255 = 45%
B 61 of 255 = 24%
R + G + B ~ 32%. #47743D is quite dark color.
R + G + B =
71 + 116 + 61 = 248 (100%)
R 71 of 248 ~ 28.63%
G 116 of 248 ~ 46.77%
B 61 of 248 ~ 24.6%
#47743D color CMYK value is (39,0,47,55).
CMYK: (39,0,47,55) C39M0Y47K55 (39%,0%,47%,55%) (0.39/0.00/0.47/0.55)
47 | 74 | 3D | |
---|---|---|---|
RGB | 71 | 116 | 61 |
HSL | 109° | 31.07% | 34.71% |
HSB/HSV | 109° | 47.41% | 45.49% |
CMYK | 38.79% | 0.00% | 47.41% |
54.51% |
HEX | 47 | 74 | 3D |
Decimal | 71 | 116 | 61 |
Binary | 1000111 | 1110100 | 111101 |
Octal | 107 | 164 | 75 |
Examples of css and html codes for elements with #47743D color. Also use rgb(71,116,61) instead hex code.
.myTextColor { color: #47743D; }
<p style="color:#47743D">This sample text font color is #47743D.</p>
This text font color is #47743D.
.myBgColor { background-color: #47743D; }
<div style="background-color:#47743D">Inner text</div>
This div background color is #47743D.
.myBorderColor { border: 1px solid #47743D; }
<div style="border:3px solid #47743D">Div</div>
This div border color is #47743D.
.myOpacity80 { color: #47743D; opacity: 0.8; }
<p style="color:#47743D;opacity:0.8;">80%</p>
Text with #47743D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47743D;}
<p style="text-shadow: 3px 3px 1px #47743D">Text here.</p>
This text has shadow with #47743D color.
.textShadow {text-shadow: 3px 3px 1px #47743D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47743D, 5px 5px 20px red">Text here.</p>
This text has shadow with #47743D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47743D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47743D, Direction=45, Strength=4)">Text</p>
This text has shadow with #47743D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47743D; -webkit-box-shadow: 1px 1px 3px 2px #47743D; box-shadow: 1px 1px 3px 2px #47743D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47743D; -webkit-box-shadow: 1px 1px 3px 2px #47743D; box-shadow:1px 1px 3px 2px #47743D;">
Div content here</div>
This text has color #47743D on black background.
This text has color #47743D on white background.
This text has black color on #47743D background.
This text has white color on #47743D background.