HEX: #71517C
RGB: (113,81,124)
#71517C contains red, green and blue colors in about the same proportion. Web safe color of #71517C is #666666 (or #666).
#71517C color RGB value is (113,81,124).
RGB: (113,81,124) (44%,32%,49%)
R 113 of 255 = 44%
G 81 of 255 = 32%
B 124 of 255 = 49%
R + G + B ~ 42%. #71517C is middle color (not dark and not light).
R + G + B =
113 + 81 + 124 = 318 (100%)
R 113 of 318 ~ 35.53%
G 81 of 318 ~ 25.47%
B 124 of 318 ~ 38.99%
#71517C color CMYK value is (9,35,0,51).
CMYK: (9,35,0,51) C9M35Y0K51 (9%,35%,0%,51%) (0.09/0.35/0.00/0.51)
71 | 51 | 7C | |
---|---|---|---|
RGB | 113 | 81 | 124 |
HSL | 285° | 20.98% | 40.20% |
HSB/HSV | 285° | 34.68% | 48.63% |
CMYK | 8.87% | 34.68% | 0.00% |
51.37% |
HEX | 71 | 51 | 7C |
Decimal | 113 | 81 | 124 |
Binary | 1110001 | 1010001 | 1111100 |
Octal | 161 | 121 | 174 |
Examples of css and html codes for elements with #71517C color. Also use rgb(113,81,124) instead hex code.
.myTextColor { color: #71517C; }
<p style="color:#71517C">This sample text font color is #71517C.</p>
This text font color is #71517C.
.myBgColor { background-color: #71517C; }
<div style="background-color:#71517C">Inner text</div>
This div background color is #71517C.
.myBorderColor { border: 1px solid #71517C; }
<div style="border:3px solid #71517C">Div</div>
This div border color is #71517C.
.myOpacity80 { color: #71517C; opacity: 0.8; }
<p style="color:#71517C;opacity:0.8;">80%</p>
Text with #71517C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71517C;}
<p style="text-shadow: 3px 3px 1px #71517C">Text here.</p>
This text has shadow with #71517C color.
.textShadow {text-shadow: 3px 3px 1px #71517C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71517C, 5px 5px 20px red">Text here.</p>
This text has shadow with #71517C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71517C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71517C, Direction=45, Strength=4)">Text</p>
This text has shadow with #71517C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71517C; -webkit-box-shadow: 1px 1px 3px 2px #71517C; box-shadow: 1px 1px 3px 2px #71517C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71517C; -webkit-box-shadow: 1px 1px 3px 2px #71517C; box-shadow:1px 1px 3px 2px #71517C;">
Div content here</div>
This text has color #71517C on black background.
This text has color #71517C on white background.
This text has black color on #71517C background.
This text has white color on #71517C background.