HEX: #B9477E
RGB: (185,71,126)
#B9477E contains mainly red and blue colors. Web safe color of #B9477E is #CC3366 (or #C36).
#B9477E color RGB value is (185,71,126).
RGB: (185,71,126) (73%,28%,49%)
R 185 of 255 = 73%
G 71 of 255 = 28%
B 126 of 255 = 49%
R + G + B ~ 50%. #B9477E is middle color (not dark and not light).
R + G + B =
185 + 71 + 126 = 382 (100%)
R 185 of 382 ~ 48.43%
G 71 of 382 ~ 18.59%
B 126 of 382 ~ 32.98%
#B9477E color CMYK value is (0,62,32,27).
CMYK: (0,62,32,27) C0M62Y32K27 (0%,62%,32%,27%) (0.00/0.62/0.32/0.27)
B9 | 47 | 7E | |
---|---|---|---|
RGB | 185 | 71 | 126 |
HSL | 331° | 44.88% | 50.20% |
HSB/HSV | 331° | 61.62% | 72.55% |
CMYK | 0.00% | 61.62% | 31.89% |
27.45% |
HEX | B9 | 47 | 7E |
Decimal | 185 | 71 | 126 |
Binary | 10111001 | 1000111 | 1111110 |
Octal | 271 | 107 | 176 |
Examples of css and html codes for elements with #B9477E color. Also use rgb(185,71,126) instead hex code.
.myTextColor { color: #B9477E; }
<p style="color:#B9477E">This sample text font color is #B9477E.</p>
This text font color is #B9477E.
.myBgColor { background-color: #B9477E; }
<div style="background-color:#B9477E">Inner text</div>
This div background color is #B9477E.
.myBorderColor { border: 1px solid #B9477E; }
<div style="border:3px solid #B9477E">Div</div>
This div border color is #B9477E.
.myOpacity80 { color: #B9477E; opacity: 0.8; }
<p style="color:#B9477E;opacity:0.8;">80%</p>
Text with #B9477E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9477E;}
<p style="text-shadow: 3px 3px 1px #B9477E">Text here.</p>
This text has shadow with #B9477E color.
.textShadow {text-shadow: 3px 3px 1px #B9477E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9477E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9477E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9477E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9477E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9477E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9477E; -webkit-box-shadow: 1px 1px 3px 2px #B9477E; box-shadow: 1px 1px 3px 2px #B9477E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9477E; -webkit-box-shadow: 1px 1px 3px 2px #B9477E; box-shadow:1px 1px 3px 2px #B9477E;">
Div content here</div>
This text has color #B9477E on black background.
This text has color #B9477E on white background.
This text has black color on #B9477E background.
This text has white color on #B9477E background.