HEX: #47615D
RGB: (71,97,93)
#47615D contains red, green and blue colors in about the same proportion. Web safe color of #47615D is #336666 (or #366).
#47615D color RGB value is (71,97,93).
RGB: (71,97,93) (28%,38%,36%)
R 71 of 255 = 28%
G 97 of 255 = 38%
B 93 of 255 = 36%
R + G + B ~ 34%. #47615D is quite dark color.
R + G + B =
71 + 97 + 93 = 261 (100%)
R 71 of 261 ~ 27.2%
G 97 of 261 ~ 37.16%
B 93 of 261 ~ 35.63%
#47615D color CMYK value is (27,0,4,62).
CMYK: (27,0,4,62) C27M0Y4K62 (27%,0%,4%,62%) (0.27/0.00/0.04/0.62)
47 | 61 | 5D | |
---|---|---|---|
RGB | 71 | 97 | 93 |
HSL | 171° | 15.48% | 32.94% |
HSB/HSV | 171° | 26.80% | 38.04% |
CMYK | 26.80% | 0.00% | 4.12% |
61.96% |
HEX | 47 | 61 | 5D |
Decimal | 71 | 97 | 93 |
Binary | 1000111 | 1100001 | 1011101 |
Octal | 107 | 141 | 135 |
Examples of css and html codes for elements with #47615D color. Also use rgb(71,97,93) instead hex code.
.myTextColor { color: #47615D; }
<p style="color:#47615D">This sample text font color is #47615D.</p>
This text font color is #47615D.
.myBgColor { background-color: #47615D; }
<div style="background-color:#47615D">Inner text</div>
This div background color is #47615D.
.myBorderColor { border: 1px solid #47615D; }
<div style="border:3px solid #47615D">Div</div>
This div border color is #47615D.
.myOpacity80 { color: #47615D; opacity: 0.8; }
<p style="color:#47615D;opacity:0.8;">80%</p>
Text with #47615D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47615D;}
<p style="text-shadow: 3px 3px 1px #47615D">Text here.</p>
This text has shadow with #47615D color.
.textShadow {text-shadow: 3px 3px 1px #47615D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47615D, 5px 5px 20px red">Text here.</p>
This text has shadow with #47615D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47615D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47615D, Direction=45, Strength=4)">Text</p>
This text has shadow with #47615D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47615D; -webkit-box-shadow: 1px 1px 3px 2px #47615D; box-shadow: 1px 1px 3px 2px #47615D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47615D; -webkit-box-shadow: 1px 1px 3px 2px #47615D; box-shadow:1px 1px 3px 2px #47615D;">
Div content here</div>
This text has color #47615D on black background.
This text has color #47615D on white background.
This text has black color on #47615D background.
This text has white color on #47615D background.