HEX: #47396B
RGB: (71,57,107)
#47396B contains red, green and blue colors in about the same proportion. Web safe color of #47396B is #333366 (or #336).
#47396B color RGB value is (71,57,107).
RGB: (71,57,107) (28%,22%,42%)
R 71 of 255 = 28%
G 57 of 255 = 22%
B 107 of 255 = 42%
R + G + B ~ 31%. #47396B is quite dark color.
R + G + B =
71 + 57 + 107 = 235 (100%)
R 71 of 235 ~ 30.21%
G 57 of 235 ~ 24.26%
B 107 of 235 ~ 45.53%
#47396B color CMYK value is (34,47,0,58).
CMYK: (34,47,0,58) C34M47Y0K58 (34%,47%,0%,58%) (0.34/0.47/0.00/0.58)
47 | 39 | 6B | |
---|---|---|---|
RGB | 71 | 57 | 107 |
HSL | 257° | 30.49% | 32.16% |
HSB/HSV | 257° | 46.73% | 41.96% |
CMYK | 33.64% | 46.73% | 0.00% |
58.04% |
HEX | 47 | 39 | 6B |
Decimal | 71 | 57 | 107 |
Binary | 1000111 | 111001 | 1101011 |
Octal | 107 | 71 | 153 |
Examples of css and html codes for elements with #47396B color. Also use rgb(71,57,107) instead hex code.
.myTextColor { color: #47396B; }
<p style="color:#47396B">This sample text font color is #47396B.</p>
This text font color is #47396B.
.myBgColor { background-color: #47396B; }
<div style="background-color:#47396B">Inner text</div>
This div background color is #47396B.
.myBorderColor { border: 1px solid #47396B; }
<div style="border:3px solid #47396B">Div</div>
This div border color is #47396B.
.myOpacity80 { color: #47396B; opacity: 0.8; }
<p style="color:#47396B;opacity:0.8;">80%</p>
Text with #47396B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47396B;}
<p style="text-shadow: 3px 3px 1px #47396B">Text here.</p>
This text has shadow with #47396B color.
.textShadow {text-shadow: 3px 3px 1px #47396B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47396B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47396B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47396B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47396B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47396B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47396B; -webkit-box-shadow: 1px 1px 3px 2px #47396B; box-shadow: 1px 1px 3px 2px #47396B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47396B; -webkit-box-shadow: 1px 1px 3px 2px #47396B; box-shadow:1px 1px 3px 2px #47396B;">
Div content here</div>
This text has color #47396B on black background.
This text has color #47396B on white background.
This text has black color on #47396B background.
This text has white color on #47396B background.