HEX: #BC9EBD
RGB: (188,158,189)
#BC9EBD contains red, green and blue colors in about the same proportion. Web safe color of #BC9EBD is #CC99CC (or #C9C).
#BC9EBD color RGB value is (188,158,189).
RGB: (188,158,189) (74%,62%,74%)
R 188 of 255 = 74%
G 158 of 255 = 62%
B 189 of 255 = 74%
R + G + B ~ 70%. #BC9EBD is quite light color.
R + G + B =
188 + 158 + 189 = 535 (100%)
R 188 of 535 ~ 35.14%
G 158 of 535 ~ 29.53%
B 189 of 535 ~ 35.33%
#BC9EBD color CMYK value is (1,16,0,26).
CMYK: (1,16,0,26) C1M16Y0K26 (1%,16%,0%,26%) (0.01/0.16/0.00/0.26)
BC | 9E | BD | |
---|---|---|---|
RGB | 188 | 158 | 189 |
HSL | 298° | 19.02% | 68.04% |
HSB/HSV | 298° | 16.40% | 74.12% |
CMYK | 0.53% | 16.40% | 0.00% |
25.88% |
HEX | BC | 9E | BD |
Decimal | 188 | 158 | 189 |
Binary | 10111100 | 10011110 | 10111101 |
Octal | 274 | 236 | 275 |
Examples of css and html codes for elements with #BC9EBD color. Also use rgb(188,158,189) instead hex code.
.myTextColor { color: #BC9EBD; }
<p style="color:#BC9EBD">This sample text font color is #BC9EBD.</p>
This text font color is #BC9EBD.
.myBgColor { background-color: #BC9EBD; }
<div style="background-color:#BC9EBD">Inner text</div>
This div background color is #BC9EBD.
.myBorderColor { border: 1px solid #BC9EBD; }
<div style="border:3px solid #BC9EBD">Div</div>
This div border color is #BC9EBD.
.myOpacity80 { color: #BC9EBD; opacity: 0.8; }
<p style="color:#BC9EBD;opacity:0.8;">80%</p>
Text with #BC9EBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC9EBD;}
<p style="text-shadow: 3px 3px 1px #BC9EBD">Text here.</p>
This text has shadow with #BC9EBD color.
.textShadow {text-shadow: 3px 3px 1px #BC9EBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC9EBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC9EBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC9EBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC9EBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC9EBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC9EBD; -webkit-box-shadow: 1px 1px 3px 2px #BC9EBD; box-shadow: 1px 1px 3px 2px #BC9EBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC9EBD; -webkit-box-shadow: 1px 1px 3px 2px #BC9EBD; box-shadow:1px 1px 3px 2px #BC9EBD;">
Div content here</div>
This text has color #BC9EBD on black background.
This text has color #BC9EBD on white background.
This text has black color on #BC9EBD background.
This text has white color on #BC9EBD background.