HEX: #B6749F
RGB: (182,116,159)
#B6749F contains mainly red and blue colors. Web safe color of #B6749F is #CC6699 (or #C69).
#B6749F color RGB value is (182,116,159).
RGB: (182,116,159) (71%,45%,62%)
R 182 of 255 = 71%
G 116 of 255 = 45%
B 159 of 255 = 62%
R + G + B ~ 59%. #B6749F is middle color (not dark and not light).
R + G + B =
182 + 116 + 159 = 457 (100%)
R 182 of 457 ~ 39.82%
G 116 of 457 ~ 25.38%
B 159 of 457 ~ 34.79%
#B6749F color CMYK value is (0,36,13,29).
CMYK: (0,36,13,29) C0M36Y13K29 (0%,36%,13%,29%) (0.00/0.36/0.13/0.29)
B6 | 74 | 9F | |
---|---|---|---|
RGB | 182 | 116 | 159 |
HSL | 321° | 31.13% | 58.43% |
HSB/HSV | 321° | 36.26% | 71.37% |
CMYK | 0.00% | 36.26% | 12.64% |
28.63% |
HEX | B6 | 74 | 9F |
Decimal | 182 | 116 | 159 |
Binary | 10110110 | 1110100 | 10011111 |
Octal | 266 | 164 | 237 |
Examples of css and html codes for elements with #B6749F color. Also use rgb(182,116,159) instead hex code.
.myTextColor { color: #B6749F; }
<p style="color:#B6749F">This sample text font color is #B6749F.</p>
This text font color is #B6749F.
.myBgColor { background-color: #B6749F; }
<div style="background-color:#B6749F">Inner text</div>
This div background color is #B6749F.
.myBorderColor { border: 1px solid #B6749F; }
<div style="border:3px solid #B6749F">Div</div>
This div border color is #B6749F.
.myOpacity80 { color: #B6749F; opacity: 0.8; }
<p style="color:#B6749F;opacity:0.8;">80%</p>
Text with #B6749F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6749F;}
<p style="text-shadow: 3px 3px 1px #B6749F">Text here.</p>
This text has shadow with #B6749F color.
.textShadow {text-shadow: 3px 3px 1px #B6749F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6749F, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6749F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6749F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6749F, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6749F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6749F; -webkit-box-shadow: 1px 1px 3px 2px #B6749F; box-shadow: 1px 1px 3px 2px #B6749F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6749F; -webkit-box-shadow: 1px 1px 3px 2px #B6749F; box-shadow:1px 1px 3px 2px #B6749F;">
Div content here</div>
This text has color #B6749F on black background.
This text has color #B6749F on white background.
This text has black color on #B6749F background.
This text has white color on #B6749F background.