HEX: #711E46
RGB: (113,30,70)
#711E46 contains mainly red and blue colors. Web safe color of #711E46 is #663333 (or #633).
#711E46 color RGB value is (113,30,70).
RGB: (113,30,70) (44%,12%,27%)
R 113 of 255 = 44%
G 30 of 255 = 12%
B 70 of 255 = 27%
R + G + B ~ 28%. #711E46 is quite dark color.
R + G + B =
113 + 30 + 70 = 213 (100%)
R 113 of 213 ~ 53.05%
G 30 of 213 ~ 14.08%
B 70 of 213 ~ 32.86%
#711E46 color CMYK value is (0,73,38,56).
CMYK: (0,73,38,56) C0M73Y38K56 (0%,73%,38%,56%) (0.00/0.73/0.38/0.56)
71 | 1E | 46 | |
---|---|---|---|
RGB | 113 | 30 | 70 |
HSL | 331° | 58.04% | 28.04% |
HSB/HSV | 331° | 73.45% | 44.31% |
CMYK | 0.00% | 73.45% | 38.05% |
55.69% |
HEX | 71 | 1E | 46 |
Decimal | 113 | 30 | 70 |
Binary | 1110001 | 11110 | 1000110 |
Octal | 161 | 36 | 106 |
Examples of css and html codes for elements with #711E46 color. Also use rgb(113,30,70) instead hex code.
.myTextColor { color: #711E46; }
<p style="color:#711E46">This sample text font color is #711E46.</p>
This text font color is #711E46.
.myBgColor { background-color: #711E46; }
<div style="background-color:#711E46">Inner text</div>
This div background color is #711E46.
.myBorderColor { border: 1px solid #711E46; }
<div style="border:3px solid #711E46">Div</div>
This div border color is #711E46.
.myOpacity80 { color: #711E46; opacity: 0.8; }
<p style="color:#711E46;opacity:0.8;">80%</p>
Text with #711E46 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #711E46;}
<p style="text-shadow: 3px 3px 1px #711E46">Text here.</p>
This text has shadow with #711E46 color.
.textShadow {text-shadow: 3px 3px 1px #711E46, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #711E46, 5px 5px 20px red">Text here.</p>
This text has shadow with #711E46 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#711E46, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#711E46, Direction=45, Strength=4)">Text</p>
This text has shadow with #711E46 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #711E46; -webkit-box-shadow: 1px 1px 3px 2px #711E46; box-shadow: 1px 1px 3px 2px #711E46; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #711E46; -webkit-box-shadow: 1px 1px 3px 2px #711E46; box-shadow:1px 1px 3px 2px #711E46;">
Div content here</div>
This text has color #711E46 on black background.
This text has color #711E46 on white background.
This text has black color on #711E46 background.
This text has white color on #711E46 background.