HEX: #47535B
RGB: (71,83,91)
#47535B contains red, green and blue colors in about the same proportion. Web safe color of #47535B is #336666 (or #366).
#47535B color RGB value is (71,83,91).
RGB: (71,83,91) (28%,33%,36%)
R 71 of 255 = 28%
G 83 of 255 = 33%
B 91 of 255 = 36%
R + G + B ~ 32%. #47535B is quite dark color.
R + G + B =
71 + 83 + 91 = 245 (100%)
R 71 of 245 ~ 28.98%
G 83 of 245 ~ 33.88%
B 91 of 245 ~ 37.14%
#47535B color CMYK value is (22,9,0,64).
CMYK: (22,9,0,64) C22M9Y0K64 (22%,9%,0%,64%) (0.22/0.09/0.00/0.64)
47 | 53 | 5B | |
---|---|---|---|
RGB | 71 | 83 | 91 |
HSL | 204° | 12.35% | 31.76% |
HSB/HSV | 204° | 21.98% | 35.69% |
CMYK | 21.98% | 8.79% | 0.00% |
64.31% |
HEX | 47 | 53 | 5B |
Decimal | 71 | 83 | 91 |
Binary | 1000111 | 1010011 | 1011011 |
Octal | 107 | 123 | 133 |
Examples of css and html codes for elements with #47535B color. Also use rgb(71,83,91) instead hex code.
.myTextColor { color: #47535B; }
<p style="color:#47535B">This sample text font color is #47535B.</p>
This text font color is #47535B.
.myBgColor { background-color: #47535B; }
<div style="background-color:#47535B">Inner text</div>
This div background color is #47535B.
.myBorderColor { border: 1px solid #47535B; }
<div style="border:3px solid #47535B">Div</div>
This div border color is #47535B.
.myOpacity80 { color: #47535B; opacity: 0.8; }
<p style="color:#47535B;opacity:0.8;">80%</p>
Text with #47535B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47535B;}
<p style="text-shadow: 3px 3px 1px #47535B">Text here.</p>
This text has shadow with #47535B color.
.textShadow {text-shadow: 3px 3px 1px #47535B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47535B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47535B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47535B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47535B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47535B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47535B; -webkit-box-shadow: 1px 1px 3px 2px #47535B; box-shadow: 1px 1px 3px 2px #47535B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47535B; -webkit-box-shadow: 1px 1px 3px 2px #47535B; box-shadow:1px 1px 3px 2px #47535B;">
Div content here</div>
This text has color #47535B on black background.
This text has color #47535B on white background.
This text has black color on #47535B background.
This text has white color on #47535B background.