HEX: #B13389
RGB: (177,51,137)
#B13389 contains mainly red and blue colors. Web safe color of #B13389 is #993399 (or #939).
#B13389 color RGB value is (177,51,137).
RGB: (177,51,137) (69%,20%,54%)
R 177 of 255 = 69%
G 51 of 255 = 20%
B 137 of 255 = 54%
R + G + B ~ 48%. #B13389 is middle color (not dark and not light).
R + G + B =
177 + 51 + 137 = 365 (100%)
R 177 of 365 ~ 48.49%
G 51 of 365 ~ 13.97%
B 137 of 365 ~ 37.53%
#B13389 color CMYK value is (0,71,23,31).
CMYK: (0,71,23,31) C0M71Y23K31 (0%,71%,23%,31%) (0.00/0.71/0.23/0.31)
B1 | 33 | 89 | |
---|---|---|---|
RGB | 177 | 51 | 137 |
HSL | 319° | 55.26% | 44.71% |
HSB/HSV | 319° | 71.19% | 69.41% |
CMYK | 0.00% | 71.19% | 22.60% |
30.59% |
HEX | B1 | 33 | 89 |
Decimal | 177 | 51 | 137 |
Binary | 10110001 | 110011 | 10001001 |
Octal | 261 | 63 | 211 |
Examples of css and html codes for elements with #B13389 color. Also use rgb(177,51,137) instead hex code.
.myTextColor { color: #B13389; }
<p style="color:#B13389">This sample text font color is #B13389.</p>
This text font color is #B13389.
.myBgColor { background-color: #B13389; }
<div style="background-color:#B13389">Inner text</div>
This div background color is #B13389.
.myBorderColor { border: 1px solid #B13389; }
<div style="border:3px solid #B13389">Div</div>
This div border color is #B13389.
.myOpacity80 { color: #B13389; opacity: 0.8; }
<p style="color:#B13389;opacity:0.8;">80%</p>
Text with #B13389 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B13389;}
<p style="text-shadow: 3px 3px 1px #B13389">Text here.</p>
This text has shadow with #B13389 color.
.textShadow {text-shadow: 3px 3px 1px #B13389, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B13389, 5px 5px 20px red">Text here.</p>
This text has shadow with #B13389 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B13389, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B13389, Direction=45, Strength=4)">Text</p>
This text has shadow with #B13389 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B13389; -webkit-box-shadow: 1px 1px 3px 2px #B13389; box-shadow: 1px 1px 3px 2px #B13389; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B13389; -webkit-box-shadow: 1px 1px 3px 2px #B13389; box-shadow:1px 1px 3px 2px #B13389;">
Div content here</div>
This text has color #B13389 on black background.
This text has color #B13389 on white background.
This text has black color on #B13389 background.
This text has white color on #B13389 background.