HEX: #47374F
RGB: (71,55,79)
#47374F contains red, green and blue colors in about the same proportion. Web safe color of #47374F is #333366 (or #336).
#47374F color RGB value is (71,55,79).
RGB: (71,55,79) (28%,22%,31%)
R 71 of 255 = 28%
G 55 of 255 = 22%
B 79 of 255 = 31%
R + G + B ~ 27%. #47374F is quite dark color.
R + G + B =
71 + 55 + 79 = 205 (100%)
R 71 of 205 ~ 34.63%
G 55 of 205 ~ 26.83%
B 79 of 205 ~ 38.54%
#47374F color CMYK value is (10,30,0,69).
CMYK: (10,30,0,69) C10M30Y0K69 (10%,30%,0%,69%) (0.10/0.30/0.00/0.69)
47 | 37 | 4F | |
---|---|---|---|
RGB | 71 | 55 | 79 |
HSL | 280° | 17.91% | 26.27% |
HSB/HSV | 280° | 30.38% | 30.98% |
CMYK | 10.13% | 30.38% | 0.00% |
69.02% |
HEX | 47 | 37 | 4F |
Decimal | 71 | 55 | 79 |
Binary | 1000111 | 110111 | 1001111 |
Octal | 107 | 67 | 117 |
Examples of css and html codes for elements with #47374F color. Also use rgb(71,55,79) instead hex code.
.myTextColor { color: #47374F; }
<p style="color:#47374F">This sample text font color is #47374F.</p>
This text font color is #47374F.
.myBgColor { background-color: #47374F; }
<div style="background-color:#47374F">Inner text</div>
This div background color is #47374F.
.myBorderColor { border: 1px solid #47374F; }
<div style="border:3px solid #47374F">Div</div>
This div border color is #47374F.
.myOpacity80 { color: #47374F; opacity: 0.8; }
<p style="color:#47374F;opacity:0.8;">80%</p>
Text with #47374F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47374F;}
<p style="text-shadow: 3px 3px 1px #47374F">Text here.</p>
This text has shadow with #47374F color.
.textShadow {text-shadow: 3px 3px 1px #47374F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47374F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47374F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47374F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47374F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47374F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47374F; -webkit-box-shadow: 1px 1px 3px 2px #47374F; box-shadow: 1px 1px 3px 2px #47374F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47374F; -webkit-box-shadow: 1px 1px 3px 2px #47374F; box-shadow:1px 1px 3px 2px #47374F;">
Div content here</div>
This text has color #47374F on black background.
This text has color #47374F on white background.
This text has black color on #47374F background.
This text has white color on #47374F background.