HEX: #47735B
RGB: (71,115,91)
#47735B contains red, green and blue colors in about the same proportion. Web safe color of #47735B is #336666 (or #366).
#47735B color RGB value is (71,115,91).
RGB: (71,115,91) (28%,45%,36%)
R 71 of 255 = 28%
G 115 of 255 = 45%
B 91 of 255 = 36%
R + G + B ~ 36%. #47735B is quite dark color.
R + G + B =
71 + 115 + 91 = 277 (100%)
R 71 of 277 ~ 25.63%
G 115 of 277 ~ 41.52%
B 91 of 277 ~ 32.85%
#47735B color CMYK value is (38,0,21,55).
CMYK: (38,0,21,55) C38M0Y21K55 (38%,0%,21%,55%) (0.38/0.00/0.21/0.55)
47 | 73 | 5B | |
---|---|---|---|
RGB | 71 | 115 | 91 |
HSL | 147° | 23.66% | 36.47% |
HSB/HSV | 147° | 38.26% | 45.10% |
CMYK | 38.26% | 0.00% | 20.87% |
54.90% |
HEX | 47 | 73 | 5B |
Decimal | 71 | 115 | 91 |
Binary | 1000111 | 1110011 | 1011011 |
Octal | 107 | 163 | 133 |
Examples of css and html codes for elements with #47735B color. Also use rgb(71,115,91) instead hex code.
.myTextColor { color: #47735B; }
<p style="color:#47735B">This sample text font color is #47735B.</p>
This text font color is #47735B.
.myBgColor { background-color: #47735B; }
<div style="background-color:#47735B">Inner text</div>
This div background color is #47735B.
.myBorderColor { border: 1px solid #47735B; }
<div style="border:3px solid #47735B">Div</div>
This div border color is #47735B.
.myOpacity80 { color: #47735B; opacity: 0.8; }
<p style="color:#47735B;opacity:0.8;">80%</p>
Text with #47735B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47735B;}
<p style="text-shadow: 3px 3px 1px #47735B">Text here.</p>
This text has shadow with #47735B color.
.textShadow {text-shadow: 3px 3px 1px #47735B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47735B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47735B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47735B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47735B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47735B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47735B; -webkit-box-shadow: 1px 1px 3px 2px #47735B; box-shadow: 1px 1px 3px 2px #47735B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47735B; -webkit-box-shadow: 1px 1px 3px 2px #47735B; box-shadow:1px 1px 3px 2px #47735B;">
Div content here</div>
This text has color #47735B on black background.
This text has color #47735B on white background.
This text has black color on #47735B background.
This text has white color on #47735B background.