HEX: #71205B
RGB: (113,32,91)
#71205B contains mainly red and blue colors. Web safe color of #71205B is #663366 (or #636).
#71205B color RGB value is (113,32,91).
RGB: (113,32,91) (44%,13%,36%)
R 113 of 255 = 44%
G 32 of 255 = 13%
B 91 of 255 = 36%
R + G + B ~ 31%. #71205B is quite dark color.
R + G + B =
113 + 32 + 91 = 236 (100%)
R 113 of 236 ~ 47.88%
G 32 of 236 ~ 13.56%
B 91 of 236 ~ 38.56%
#71205B color CMYK value is (0,72,19,56).
CMYK: (0,72,19,56) C0M72Y19K56 (0%,72%,19%,56%) (0.00/0.72/0.19/0.56)
71 | 20 | 5B | |
---|---|---|---|
RGB | 113 | 32 | 91 |
HSL | 316° | 55.86% | 28.43% |
HSB/HSV | 316° | 71.68% | 44.31% |
CMYK | 0.00% | 71.68% | 19.47% |
55.69% |
HEX | 71 | 20 | 5B |
Decimal | 113 | 32 | 91 |
Binary | 1110001 | 100000 | 1011011 |
Octal | 161 | 40 | 133 |
Examples of css and html codes for elements with #71205B color. Also use rgb(113,32,91) instead hex code.
.myTextColor { color: #71205B; }
<p style="color:#71205B">This sample text font color is #71205B.</p>
This text font color is #71205B.
.myBgColor { background-color: #71205B; }
<div style="background-color:#71205B">Inner text</div>
This div background color is #71205B.
.myBorderColor { border: 1px solid #71205B; }
<div style="border:3px solid #71205B">Div</div>
This div border color is #71205B.
.myOpacity80 { color: #71205B; opacity: 0.8; }
<p style="color:#71205B;opacity:0.8;">80%</p>
Text with #71205B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71205B;}
<p style="text-shadow: 3px 3px 1px #71205B">Text here.</p>
This text has shadow with #71205B color.
.textShadow {text-shadow: 3px 3px 1px #71205B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71205B, 5px 5px 20px red">Text here.</p>
This text has shadow with #71205B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71205B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71205B, Direction=45, Strength=4)">Text</p>
This text has shadow with #71205B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71205B; -webkit-box-shadow: 1px 1px 3px 2px #71205B; box-shadow: 1px 1px 3px 2px #71205B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71205B; -webkit-box-shadow: 1px 1px 3px 2px #71205B; box-shadow:1px 1px 3px 2px #71205B;">
Div content here</div>
This text has color #71205B on black background.
This text has color #71205B on white background.
This text has black color on #71205B background.
This text has white color on #71205B background.