HEX: #47416F
RGB: (71,65,111)
#47416F contains red, green and blue colors in about the same proportion. Web safe color of #47416F is #333366 (or #336).
#47416F color RGB value is (71,65,111).
RGB: (71,65,111) (28%,25%,44%)
R 71 of 255 = 28%
G 65 of 255 = 25%
B 111 of 255 = 44%
R + G + B ~ 32%. #47416F is quite dark color.
R + G + B =
71 + 65 + 111 = 247 (100%)
R 71 of 247 ~ 28.74%
G 65 of 247 ~ 26.32%
B 111 of 247 ~ 44.94%
#47416F color CMYK value is (36,41,0,56).
CMYK: (36,41,0,56) C36M41Y0K56 (36%,41%,0%,56%) (0.36/0.41/0.00/0.56)
47 | 41 | 6F | |
---|---|---|---|
RGB | 71 | 65 | 111 |
HSL | 248° | 26.14% | 34.51% |
HSB/HSV | 248° | 41.44% | 43.53% |
CMYK | 36.04% | 41.44% | 0.00% |
56.47% |
HEX | 47 | 41 | 6F |
Decimal | 71 | 65 | 111 |
Binary | 1000111 | 1000001 | 1101111 |
Octal | 107 | 101 | 157 |
Examples of css and html codes for elements with #47416F color. Also use rgb(71,65,111) instead hex code.
.myTextColor { color: #47416F; }
<p style="color:#47416F">This sample text font color is #47416F.</p>
This text font color is #47416F.
.myBgColor { background-color: #47416F; }
<div style="background-color:#47416F">Inner text</div>
This div background color is #47416F.
.myBorderColor { border: 1px solid #47416F; }
<div style="border:3px solid #47416F">Div</div>
This div border color is #47416F.
.myOpacity80 { color: #47416F; opacity: 0.8; }
<p style="color:#47416F;opacity:0.8;">80%</p>
Text with #47416F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47416F;}
<p style="text-shadow: 3px 3px 1px #47416F">Text here.</p>
This text has shadow with #47416F color.
.textShadow {text-shadow: 3px 3px 1px #47416F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47416F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47416F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47416F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47416F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47416F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47416F; -webkit-box-shadow: 1px 1px 3px 2px #47416F; box-shadow: 1px 1px 3px 2px #47416F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47416F; -webkit-box-shadow: 1px 1px 3px 2px #47416F; box-shadow:1px 1px 3px 2px #47416F;">
Div content here</div>
This text has color #47416F on black background.
This text has color #47416F on white background.
This text has black color on #47416F background.
This text has white color on #47416F background.