HEX: #71475C
RGB: (113,71,92)
#71475C contains red, green and blue colors in about the same proportion. Web safe color of #71475C is #663366 (or #636).
#71475C color RGB value is (113,71,92).
RGB: (113,71,92) (44%,28%,36%)
R 113 of 255 = 44%
G 71 of 255 = 28%
B 92 of 255 = 36%
R + G + B ~ 36%. #71475C is quite dark color.
R + G + B =
113 + 71 + 92 = 276 (100%)
R 113 of 276 ~ 40.94%
G 71 of 276 ~ 25.72%
B 92 of 276 ~ 33.33%
#71475C color CMYK value is (0,37,19,56).
CMYK: (0,37,19,56) C0M37Y19K56 (0%,37%,19%,56%) (0.00/0.37/0.19/0.56)
71 | 47 | 5C | |
---|---|---|---|
RGB | 113 | 71 | 92 |
HSL | 330° | 22.83% | 36.08% |
HSB/HSV | 330° | 37.17% | 44.31% |
CMYK | 0.00% | 37.17% | 18.58% |
55.69% |
HEX | 71 | 47 | 5C |
Decimal | 113 | 71 | 92 |
Binary | 1110001 | 1000111 | 1011100 |
Octal | 161 | 107 | 134 |
Examples of css and html codes for elements with #71475C color. Also use rgb(113,71,92) instead hex code.
.myTextColor { color: #71475C; }
<p style="color:#71475C">This sample text font color is #71475C.</p>
This text font color is #71475C.
.myBgColor { background-color: #71475C; }
<div style="background-color:#71475C">Inner text</div>
This div background color is #71475C.
.myBorderColor { border: 1px solid #71475C; }
<div style="border:3px solid #71475C">Div</div>
This div border color is #71475C.
.myOpacity80 { color: #71475C; opacity: 0.8; }
<p style="color:#71475C;opacity:0.8;">80%</p>
Text with #71475C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71475C;}
<p style="text-shadow: 3px 3px 1px #71475C">Text here.</p>
This text has shadow with #71475C color.
.textShadow {text-shadow: 3px 3px 1px #71475C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71475C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71475C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71475C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71475C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71475C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71475C; -webkit-box-shadow: 1px 1px 3px 2px #71475C; box-shadow: 1px 1px 3px 2px #71475C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71475C; -webkit-box-shadow: 1px 1px 3px 2px #71475C; box-shadow:1px 1px 3px 2px #71475C;">
Div content here</div>
This text has color #71475C on black background.
This text has color #71475C on white background.
This text has black color on #71475C background.
This text has white color on #71475C background.