HEX: #47696B
RGB: (71,105,107)
#47696B contains red, green and blue colors in about the same proportion. Web safe color of #47696B is #336666 (or #366).
#47696B color RGB value is (71,105,107).
RGB: (71,105,107) (28%,41%,42%)
R 71 of 255 = 28%
G 105 of 255 = 41%
B 107 of 255 = 42%
R + G + B ~ 37%. #47696B is quite dark color.
R + G + B =
71 + 105 + 107 = 283 (100%)
R 71 of 283 ~ 25.09%
G 105 of 283 ~ 37.1%
B 107 of 283 ~ 37.81%
#47696B color CMYK value is (34,2,0,58).
CMYK: (34,2,0,58) C34M2Y0K58 (34%,2%,0%,58%) (0.34/0.02/0.00/0.58)
47 | 69 | 6B | |
---|---|---|---|
RGB | 71 | 105 | 107 |
HSL | 183° | 20.22% | 34.90% |
HSB/HSV | 183° | 33.64% | 41.96% |
CMYK | 33.64% | 1.87% | 0.00% |
58.04% |
HEX | 47 | 69 | 6B |
Decimal | 71 | 105 | 107 |
Binary | 1000111 | 1101001 | 1101011 |
Octal | 107 | 151 | 153 |
Examples of css and html codes for elements with #47696B color. Also use rgb(71,105,107) instead hex code.
.myTextColor { color: #47696B; }
<p style="color:#47696B">This sample text font color is #47696B.</p>
This text font color is #47696B.
.myBgColor { background-color: #47696B; }
<div style="background-color:#47696B">Inner text</div>
This div background color is #47696B.
.myBorderColor { border: 1px solid #47696B; }
<div style="border:3px solid #47696B">Div</div>
This div border color is #47696B.
.myOpacity80 { color: #47696B; opacity: 0.8; }
<p style="color:#47696B;opacity:0.8;">80%</p>
Text with #47696B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47696B;}
<p style="text-shadow: 3px 3px 1px #47696B">Text here.</p>
This text has shadow with #47696B color.
.textShadow {text-shadow: 3px 3px 1px #47696B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47696B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47696B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47696B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47696B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47696B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47696B; -webkit-box-shadow: 1px 1px 3px 2px #47696B; box-shadow: 1px 1px 3px 2px #47696B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47696B; -webkit-box-shadow: 1px 1px 3px 2px #47696B; box-shadow:1px 1px 3px 2px #47696B;">
Div content here</div>
This text has color #47696B on black background.
This text has color #47696B on white background.
This text has black color on #47696B background.
This text has white color on #47696B background.