HEX: #47554F
RGB: (71,85,79)
#47554F contains red, green and blue colors in about the same proportion. Web safe color of #47554F is #336666 (or #366).
#47554F color RGB value is (71,85,79).
RGB: (71,85,79) (28%,33%,31%)
R 71 of 255 = 28%
G 85 of 255 = 33%
B 79 of 255 = 31%
R + G + B ~ 31%. #47554F is quite dark color.
R + G + B =
71 + 85 + 79 = 235 (100%)
R 71 of 235 ~ 30.21%
G 85 of 235 ~ 36.17%
B 79 of 235 ~ 33.62%
#47554F color CMYK value is (16,0,7,67).
CMYK: (16,0,7,67) C16M0Y7K67 (16%,0%,7%,67%) (0.16/0.00/0.07/0.67)
47 | 55 | 4F | |
---|---|---|---|
RGB | 71 | 85 | 79 |
HSL | 154° | 8.97% | 30.59% |
HSB/HSV | 154° | 16.47% | 33.33% |
CMYK | 16.47% | 0.00% | 7.06% |
66.67% |
HEX | 47 | 55 | 4F |
Decimal | 71 | 85 | 79 |
Binary | 1000111 | 1010101 | 1001111 |
Octal | 107 | 125 | 117 |
Examples of css and html codes for elements with #47554F color. Also use rgb(71,85,79) instead hex code.
.myTextColor { color: #47554F; }
<p style="color:#47554F">This sample text font color is #47554F.</p>
This text font color is #47554F.
.myBgColor { background-color: #47554F; }
<div style="background-color:#47554F">Inner text</div>
This div background color is #47554F.
.myBorderColor { border: 1px solid #47554F; }
<div style="border:3px solid #47554F">Div</div>
This div border color is #47554F.
.myOpacity80 { color: #47554F; opacity: 0.8; }
<p style="color:#47554F;opacity:0.8;">80%</p>
Text with #47554F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47554F;}
<p style="text-shadow: 3px 3px 1px #47554F">Text here.</p>
This text has shadow with #47554F color.
.textShadow {text-shadow: 3px 3px 1px #47554F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47554F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47554F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47554F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47554F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47554F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47554F; -webkit-box-shadow: 1px 1px 3px 2px #47554F; box-shadow: 1px 1px 3px 2px #47554F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47554F; -webkit-box-shadow: 1px 1px 3px 2px #47554F; box-shadow:1px 1px 3px 2px #47554F;">
Div content here</div>
This text has color #47554F on black background.
This text has color #47554F on white background.
This text has black color on #47554F background.
This text has white color on #47554F background.