HEX: #712E6B
RGB: (113,46,107)
#712E6B contains mainly red and blue colors. Web safe color of #712E6B is #663366 (or #636).
#712E6B color RGB value is (113,46,107).
RGB: (113,46,107) (44%,18%,42%)
R 113 of 255 = 44%
G 46 of 255 = 18%
B 107 of 255 = 42%
R + G + B ~ 35%. #712E6B is quite dark color.
R + G + B =
113 + 46 + 107 = 266 (100%)
R 113 of 266 ~ 42.48%
G 46 of 266 ~ 17.29%
B 107 of 266 ~ 40.23%
#712E6B color CMYK value is (0,59,5,56).
CMYK: (0,59,5,56) C0M59Y5K56 (0%,59%,5%,56%) (0.00/0.59/0.05/0.56)
71 | 2E | 6B | |
---|---|---|---|
RGB | 113 | 46 | 107 |
HSL | 305° | 42.14% | 31.18% |
HSB/HSV | 305° | 59.29% | 44.31% |
CMYK | 0.00% | 59.29% | 5.31% |
55.69% |
HEX | 71 | 2E | 6B |
Decimal | 113 | 46 | 107 |
Binary | 1110001 | 101110 | 1101011 |
Octal | 161 | 56 | 153 |
Examples of css and html codes for elements with #712E6B color. Also use rgb(113,46,107) instead hex code.
.myTextColor { color: #712E6B; }
<p style="color:#712E6B">This sample text font color is #712E6B.</p>
This text font color is #712E6B.
.myBgColor { background-color: #712E6B; }
<div style="background-color:#712E6B">Inner text</div>
This div background color is #712E6B.
.myBorderColor { border: 1px solid #712E6B; }
<div style="border:3px solid #712E6B">Div</div>
This div border color is #712E6B.
.myOpacity80 { color: #712E6B; opacity: 0.8; }
<p style="color:#712E6B;opacity:0.8;">80%</p>
Text with #712E6B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #712E6B;}
<p style="text-shadow: 3px 3px 1px #712E6B">Text here.</p>
This text has shadow with #712E6B color.
.textShadow {text-shadow: 3px 3px 1px #712E6B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #712E6B, 5px 5px 20px red">Text here.</p>
This text has shadow with #712E6B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#712E6B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#712E6B, Direction=45, Strength=4)">Text</p>
This text has shadow with #712E6B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #712E6B; -webkit-box-shadow: 1px 1px 3px 2px #712E6B; box-shadow: 1px 1px 3px 2px #712E6B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #712E6B; -webkit-box-shadow: 1px 1px 3px 2px #712E6B; box-shadow:1px 1px 3px 2px #712E6B;">
Div content here</div>
This text has color #712E6B on black background.
This text has color #712E6B on white background.
This text has black color on #712E6B background.
This text has white color on #712E6B background.