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