HEX: #BCB9DC
RGB: (188,185,220)
#BCB9DC contains red, green and blue colors in about the same proportion. Web safe color of #BCB9DC is #CCCCCC (or #CCC).
#BCB9DC color RGB value is (188,185,220).
RGB: (188,185,220) (74%,73%,86%)
R 188 of 255 = 74%
G 185 of 255 = 73%
B 220 of 255 = 86%
R + G + B ~ 78%. #BCB9DC is quite light color.
R + G + B =
188 + 185 + 220 = 593 (100%)
R 188 of 593 ~ 31.7%
G 185 of 593 ~ 31.2%
B 220 of 593 ~ 37.1%
#BCB9DC color CMYK value is (15,16,0,14).
CMYK: (15,16,0,14) C15M16Y0K14 (15%,16%,0%,14%) (0.15/0.16/0.00/0.14)
BC | B9 | DC | |
---|---|---|---|
RGB | 188 | 185 | 220 |
HSL | 245° | 33.33% | 79.41% |
HSB/HSV | 245° | 15.91% | 86.27% |
CMYK | 14.55% | 15.91% | 0.00% |
13.73% |
HEX | BC | B9 | DC |
Decimal | 188 | 185 | 220 |
Binary | 10111100 | 10111001 | 11011100 |
Octal | 274 | 271 | 334 |
Examples of css and html codes for elements with #BCB9DC color. Also use rgb(188,185,220) instead hex code.
.myTextColor { color: #BCB9DC; }
<p style="color:#BCB9DC">This sample text font color is #BCB9DC.</p>
This text font color is #BCB9DC.
.myBgColor { background-color: #BCB9DC; }
<div style="background-color:#BCB9DC">Inner text</div>
This div background color is #BCB9DC.
.myBorderColor { border: 1px solid #BCB9DC; }
<div style="border:3px solid #BCB9DC">Div</div>
This div border color is #BCB9DC.
.myOpacity80 { color: #BCB9DC; opacity: 0.8; }
<p style="color:#BCB9DC;opacity:0.8;">80%</p>
Text with #BCB9DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCB9DC;}
<p style="text-shadow: 3px 3px 1px #BCB9DC">Text here.</p>
This text has shadow with #BCB9DC color.
.textShadow {text-shadow: 3px 3px 1px #BCB9DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCB9DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCB9DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCB9DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCB9DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCB9DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCB9DC; -webkit-box-shadow: 1px 1px 3px 2px #BCB9DC; box-shadow: 1px 1px 3px 2px #BCB9DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCB9DC; -webkit-box-shadow: 1px 1px 3px 2px #BCB9DC; box-shadow:1px 1px 3px 2px #BCB9DC;">
Div content here</div>
This text has color #BCB9DC on black background.
This text has color #BCB9DC on white background.
This text has black color on #BCB9DC background.
This text has white color on #BCB9DC background.