HEX: #BB9ECC
RGB: (187,158,204)
#BB9ECC contains red, green and blue colors in about the same proportion. Web safe color of #BB9ECC is #CC99CC (or #C9C).
#BB9ECC color RGB value is (187,158,204).
RGB: (187,158,204) (73%,62%,80%)
R 187 of 255 = 73%
G 158 of 255 = 62%
B 204 of 255 = 80%
R + G + B ~ 72%. #BB9ECC is quite light color.
R + G + B =
187 + 158 + 204 = 549 (100%)
R 187 of 549 ~ 34.06%
G 158 of 549 ~ 28.78%
B 204 of 549 ~ 37.16%
#BB9ECC color CMYK value is (8,23,0,20).
CMYK: (8,23,0,20) C8M23Y0K20 (8%,23%,0%,20%) (0.08/0.23/0.00/0.20)
BB | 9E | CC | |
---|---|---|---|
RGB | 187 | 158 | 204 |
HSL | 278° | 31.08% | 70.98% |
HSB/HSV | 278° | 22.55% | 80.00% |
CMYK | 8.33% | 22.55% | 0.00% |
20.00% |
HEX | BB | 9E | CC |
Decimal | 187 | 158 | 204 |
Binary | 10111011 | 10011110 | 11001100 |
Octal | 273 | 236 | 314 |
Examples of css and html codes for elements with #BB9ECC color. Also use rgb(187,158,204) instead hex code.
.myTextColor { color: #BB9ECC; }
<p style="color:#BB9ECC">This sample text font color is #BB9ECC.</p>
This text font color is #BB9ECC.
.myBgColor { background-color: #BB9ECC; }
<div style="background-color:#BB9ECC">Inner text</div>
This div background color is #BB9ECC.
.myBorderColor { border: 1px solid #BB9ECC; }
<div style="border:3px solid #BB9ECC">Div</div>
This div border color is #BB9ECC.
.myOpacity80 { color: #BB9ECC; opacity: 0.8; }
<p style="color:#BB9ECC;opacity:0.8;">80%</p>
Text with #BB9ECC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB9ECC;}
<p style="text-shadow: 3px 3px 1px #BB9ECC">Text here.</p>
This text has shadow with #BB9ECC color.
.textShadow {text-shadow: 3px 3px 1px #BB9ECC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB9ECC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB9ECC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB9ECC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB9ECC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB9ECC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB9ECC; -webkit-box-shadow: 1px 1px 3px 2px #BB9ECC; box-shadow: 1px 1px 3px 2px #BB9ECC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB9ECC; -webkit-box-shadow: 1px 1px 3px 2px #BB9ECC; box-shadow:1px 1px 3px 2px #BB9ECC;">
Div content here</div>
This text has color #BB9ECC on black background.
This text has color #BB9ECC on white background.
This text has black color on #BB9ECC background.
This text has white color on #BB9ECC background.