HEX: #47646F
RGB: (71,100,111)
#47646F contains red, green and blue colors in about the same proportion. Web safe color of #47646F is #336666 (or #366).
#47646F color RGB value is (71,100,111).
RGB: (71,100,111) (28%,39%,44%)
R 71 of 255 = 28%
G 100 of 255 = 39%
B 111 of 255 = 44%
R + G + B ~ 37%. #47646F is quite dark color.
R + G + B =
71 + 100 + 111 = 282 (100%)
R 71 of 282 ~ 25.18%
G 100 of 282 ~ 35.46%
B 111 of 282 ~ 39.36%
#47646F color CMYK value is (36,10,0,56).
CMYK: (36,10,0,56) C36M10Y0K56 (36%,10%,0%,56%) (0.36/0.10/0.00/0.56)
47 | 64 | 6F | |
---|---|---|---|
RGB | 71 | 100 | 111 |
HSL | 197° | 21.98% | 35.69% |
HSB/HSV | 197° | 36.04% | 43.53% |
CMYK | 36.04% | 9.91% | 0.00% |
56.47% |
HEX | 47 | 64 | 6F |
Decimal | 71 | 100 | 111 |
Binary | 1000111 | 1100100 | 1101111 |
Octal | 107 | 144 | 157 |
Examples of css and html codes for elements with #47646F color. Also use rgb(71,100,111) instead hex code.
.myTextColor { color: #47646F; }
<p style="color:#47646F">This sample text font color is #47646F.</p>
This text font color is #47646F.
.myBgColor { background-color: #47646F; }
<div style="background-color:#47646F">Inner text</div>
This div background color is #47646F.
.myBorderColor { border: 1px solid #47646F; }
<div style="border:3px solid #47646F">Div</div>
This div border color is #47646F.
.myOpacity80 { color: #47646F; opacity: 0.8; }
<p style="color:#47646F;opacity:0.8;">80%</p>
Text with #47646F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47646F;}
<p style="text-shadow: 3px 3px 1px #47646F">Text here.</p>
This text has shadow with #47646F color.
.textShadow {text-shadow: 3px 3px 1px #47646F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47646F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47646F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47646F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47646F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47646F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47646F; -webkit-box-shadow: 1px 1px 3px 2px #47646F; box-shadow: 1px 1px 3px 2px #47646F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47646F; -webkit-box-shadow: 1px 1px 3px 2px #47646F; box-shadow:1px 1px 3px 2px #47646F;">
Div content here</div>
This text has color #47646F on black background.
This text has color #47646F on white background.
This text has black color on #47646F background.
This text has white color on #47646F background.