HEX: #711F90
RGB: (113,31,144)
#711F90 contains mainly red and blue colors. Web safe color of #711F90 is #663399 (or #639).
#711F90 color RGB value is (113,31,144).
RGB: (113,31,144) (44%,12%,56%)
R 113 of 255 = 44%
G 31 of 255 = 12%
B 144 of 255 = 56%
R + G + B ~ 37%. #711F90 is quite dark color.
R + G + B =
113 + 31 + 144 = 288 (100%)
R 113 of 288 ~ 39.24%
G 31 of 288 ~ 10.76%
B 144 of 288 ~ 50%
#711F90 color CMYK value is (22,78,0,44).
CMYK: (22,78,0,44) C22M78Y0K44 (22%,78%,0%,44%) (0.22/0.78/0.00/0.44)
71 | 1F | 90 | |
---|---|---|---|
RGB | 113 | 31 | 144 |
HSL | 284° | 64.57% | 34.31% |
HSB/HSV | 284° | 78.47% | 56.47% |
CMYK | 21.53% | 78.47% | 0.00% |
43.53% |
HEX | 71 | 1F | 90 |
Decimal | 113 | 31 | 144 |
Binary | 1110001 | 11111 | 10010000 |
Octal | 161 | 37 | 220 |
Examples of css and html codes for elements with #711F90 color. Also use rgb(113,31,144) instead hex code.
.myTextColor { color: #711F90; }
<p style="color:#711F90">This sample text font color is #711F90.</p>
This text font color is #711F90.
.myBgColor { background-color: #711F90; }
<div style="background-color:#711F90">Inner text</div>
This div background color is #711F90.
.myBorderColor { border: 1px solid #711F90; }
<div style="border:3px solid #711F90">Div</div>
This div border color is #711F90.
.myOpacity80 { color: #711F90; opacity: 0.8; }
<p style="color:#711F90;opacity:0.8;">80%</p>
Text with #711F90 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #711F90;}
<p style="text-shadow: 3px 3px 1px #711F90">Text here.</p>
This text has shadow with #711F90 color.
.textShadow {text-shadow: 3px 3px 1px #711F90, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #711F90, 5px 5px 20px red">Text here.</p>
This text has shadow with #711F90 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#711F90, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#711F90, Direction=45, Strength=4)">Text</p>
This text has shadow with #711F90 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #711F90; -webkit-box-shadow: 1px 1px 3px 2px #711F90; box-shadow: 1px 1px 3px 2px #711F90; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #711F90; -webkit-box-shadow: 1px 1px 3px 2px #711F90; box-shadow:1px 1px 3px 2px #711F90;">
Div content here</div>
This text has color #711F90 on black background.
This text has color #711F90 on white background.
This text has black color on #711F90 background.
This text has white color on #711F90 background.