HEX: #47873B
RGB: (71,135,59)
#47873B contains mainly green color. Web safe color of #47873B is #339933 (or #393).
#47873B color RGB value is (71,135,59).
RGB: (71,135,59) (28%,53%,23%)
R 71 of 255 = 28%
G 135 of 255 = 53%
B 59 of 255 = 23%
R + G + B ~ 35%. #47873B is quite dark color.
R + G + B =
71 + 135 + 59 = 265 (100%)
R 71 of 265 ~ 26.79%
G 135 of 265 ~ 50.94%
B 59 of 265 ~ 22.26%
#47873B color CMYK value is (47,0,56,47).
CMYK: (47,0,56,47) C47M0Y56K47 (47%,0%,56%,47%) (0.47/0.00/0.56/0.47)
47 | 87 | 3B | |
---|---|---|---|
RGB | 71 | 135 | 59 |
HSL | 111° | 39.18% | 38.04% |
HSB/HSV | 111° | 56.30% | 52.94% |
CMYK | 47.41% | 0.00% | 56.30% |
47.06% |
HEX | 47 | 87 | 3B |
Decimal | 71 | 135 | 59 |
Binary | 1000111 | 10000111 | 111011 |
Octal | 107 | 207 | 73 |
Examples of css and html codes for elements with #47873B color. Also use rgb(71,135,59) instead hex code.
.myTextColor { color: #47873B; }
<p style="color:#47873B">This sample text font color is #47873B.</p>
This text font color is #47873B.
.myBgColor { background-color: #47873B; }
<div style="background-color:#47873B">Inner text</div>
This div background color is #47873B.
.myBorderColor { border: 1px solid #47873B; }
<div style="border:3px solid #47873B">Div</div>
This div border color is #47873B.
.myOpacity80 { color: #47873B; opacity: 0.8; }
<p style="color:#47873B;opacity:0.8;">80%</p>
Text with #47873B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47873B;}
<p style="text-shadow: 3px 3px 1px #47873B">Text here.</p>
This text has shadow with #47873B color.
.textShadow {text-shadow: 3px 3px 1px #47873B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47873B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47873B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47873B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47873B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47873B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47873B; -webkit-box-shadow: 1px 1px 3px 2px #47873B; box-shadow: 1px 1px 3px 2px #47873B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47873B; -webkit-box-shadow: 1px 1px 3px 2px #47873B; box-shadow:1px 1px 3px 2px #47873B;">
Div content here</div>
This text has color #47873B on black background.
This text has color #47873B on white background.
This text has black color on #47873B background.
This text has white color on #47873B background.