HEX: #BB718E
RGB: (187,113,142)
#BB718E contains mainly red and blue colors. Web safe color of #BB718E is #CC6699 (or #C69).
#BB718E color RGB value is (187,113,142).
RGB: (187,113,142) (73%,44%,56%)
R 187 of 255 = 73%
G 113 of 255 = 44%
B 142 of 255 = 56%
R + G + B ~ 58%. #BB718E is middle color (not dark and not light).
R + G + B =
187 + 113 + 142 = 442 (100%)
R 187 of 442 ~ 42.31%
G 113 of 442 ~ 25.57%
B 142 of 442 ~ 32.13%
#BB718E color CMYK value is (0,40,24,27).
CMYK: (0,40,24,27) C0M40Y24K27 (0%,40%,24%,27%) (0.00/0.40/0.24/0.27)
BB | 71 | 8E | |
---|---|---|---|
RGB | 187 | 113 | 142 |
HSL | 336° | 35.24% | 58.82% |
HSB/HSV | 336° | 39.57% | 73.33% |
CMYK | 0.00% | 39.57% | 24.06% |
26.67% |
HEX | BB | 71 | 8E |
Decimal | 187 | 113 | 142 |
Binary | 10111011 | 1110001 | 10001110 |
Octal | 273 | 161 | 216 |
Examples of css and html codes for elements with #BB718E color. Also use rgb(187,113,142) instead hex code.
.myTextColor { color: #BB718E; }
<p style="color:#BB718E">This sample text font color is #BB718E.</p>
This text font color is #BB718E.
.myBgColor { background-color: #BB718E; }
<div style="background-color:#BB718E">Inner text</div>
This div background color is #BB718E.
.myBorderColor { border: 1px solid #BB718E; }
<div style="border:3px solid #BB718E">Div</div>
This div border color is #BB718E.
.myOpacity80 { color: #BB718E; opacity: 0.8; }
<p style="color:#BB718E;opacity:0.8;">80%</p>
Text with #BB718E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB718E;}
<p style="text-shadow: 3px 3px 1px #BB718E">Text here.</p>
This text has shadow with #BB718E color.
.textShadow {text-shadow: 3px 3px 1px #BB718E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB718E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB718E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB718E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB718E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB718E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB718E; -webkit-box-shadow: 1px 1px 3px 2px #BB718E; box-shadow: 1px 1px 3px 2px #BB718E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB718E; -webkit-box-shadow: 1px 1px 3px 2px #BB718E; box-shadow:1px 1px 3px 2px #BB718E;">
Div content here</div>
This text has color #BB718E on black background.
This text has color #BB718E on white background.
This text has black color on #BB718E background.
This text has white color on #BB718E background.