HEX: #B6709E
RGB: (182,112,158)
#B6709E contains mainly red and blue colors. Web safe color of #B6709E is #CC6699 (or #C69).
#B6709E color RGB value is (182,112,158).
RGB: (182,112,158) (71%,44%,62%)
R 182 of 255 = 71%
G 112 of 255 = 44%
B 158 of 255 = 62%
R + G + B ~ 59%. #B6709E is middle color (not dark and not light).
R + G + B =
182 + 112 + 158 = 452 (100%)
R 182 of 452 ~ 40.27%
G 112 of 452 ~ 24.78%
B 158 of 452 ~ 34.96%
#B6709E color CMYK value is (0,38,13,29).
CMYK: (0,38,13,29) C0M38Y13K29 (0%,38%,13%,29%) (0.00/0.38/0.13/0.29)
B6 | 70 | 9E | |
---|---|---|---|
RGB | 182 | 112 | 158 |
HSL | 321° | 32.41% | 57.65% |
HSB/HSV | 321° | 38.46% | 71.37% |
CMYK | 0.00% | 38.46% | 13.19% |
28.63% |
HEX | B6 | 70 | 9E |
Decimal | 182 | 112 | 158 |
Binary | 10110110 | 1110000 | 10011110 |
Octal | 266 | 160 | 236 |
Examples of css and html codes for elements with #B6709E color. Also use rgb(182,112,158) instead hex code.
.myTextColor { color: #B6709E; }
<p style="color:#B6709E">This sample text font color is #B6709E.</p>
This text font color is #B6709E.
.myBgColor { background-color: #B6709E; }
<div style="background-color:#B6709E">Inner text</div>
This div background color is #B6709E.
.myBorderColor { border: 1px solid #B6709E; }
<div style="border:3px solid #B6709E">Div</div>
This div border color is #B6709E.
.myOpacity80 { color: #B6709E; opacity: 0.8; }
<p style="color:#B6709E;opacity:0.8;">80%</p>
Text with #B6709E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6709E;}
<p style="text-shadow: 3px 3px 1px #B6709E">Text here.</p>
This text has shadow with #B6709E color.
.textShadow {text-shadow: 3px 3px 1px #B6709E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6709E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6709E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6709E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6709E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6709E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6709E; -webkit-box-shadow: 1px 1px 3px 2px #B6709E; box-shadow: 1px 1px 3px 2px #B6709E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6709E; -webkit-box-shadow: 1px 1px 3px 2px #B6709E; box-shadow:1px 1px 3px 2px #B6709E;">
Div content here</div>
This text has color #B6709E on black background.
This text has color #B6709E on white background.
This text has black color on #B6709E background.
This text has white color on #B6709E background.