HEX: #47604F
RGB: (71,96,79)
#47604F contains red, green and blue colors in about the same proportion. Web safe color of #47604F is #336666 (or #366).
#47604F color RGB value is (71,96,79).
RGB: (71,96,79) (28%,38%,31%)
R 71 of 255 = 28%
G 96 of 255 = 38%
B 79 of 255 = 31%
R + G + B ~ 32%. #47604F is quite dark color.
R + G + B =
71 + 96 + 79 = 246 (100%)
R 71 of 246 ~ 28.86%
G 96 of 246 ~ 39.02%
B 79 of 246 ~ 32.11%
#47604F color CMYK value is (26,0,18,62).
CMYK: (26,0,18,62) C26M0Y18K62 (26%,0%,18%,62%) (0.26/0.00/0.18/0.62)
47 | 60 | 4F | |
---|---|---|---|
RGB | 71 | 96 | 79 |
HSL | 139° | 14.97% | 32.75% |
HSB/HSV | 139° | 26.04% | 37.65% |
CMYK | 26.04% | 0.00% | 17.71% |
62.35% |
HEX | 47 | 60 | 4F |
Decimal | 71 | 96 | 79 |
Binary | 1000111 | 1100000 | 1001111 |
Octal | 107 | 140 | 117 |
Examples of css and html codes for elements with #47604F color. Also use rgb(71,96,79) instead hex code.
.myTextColor { color: #47604F; }
<p style="color:#47604F">This sample text font color is #47604F.</p>
This text font color is #47604F.
.myBgColor { background-color: #47604F; }
<div style="background-color:#47604F">Inner text</div>
This div background color is #47604F.
.myBorderColor { border: 1px solid #47604F; }
<div style="border:3px solid #47604F">Div</div>
This div border color is #47604F.
.myOpacity80 { color: #47604F; opacity: 0.8; }
<p style="color:#47604F;opacity:0.8;">80%</p>
Text with #47604F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47604F;}
<p style="text-shadow: 3px 3px 1px #47604F">Text here.</p>
This text has shadow with #47604F color.
.textShadow {text-shadow: 3px 3px 1px #47604F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47604F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47604F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47604F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47604F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47604F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47604F; -webkit-box-shadow: 1px 1px 3px 2px #47604F; box-shadow: 1px 1px 3px 2px #47604F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47604F; -webkit-box-shadow: 1px 1px 3px 2px #47604F; box-shadow:1px 1px 3px 2px #47604F;">
Div content here</div>
This text has color #47604F on black background.
This text has color #47604F on white background.
This text has black color on #47604F background.
This text has white color on #47604F background.