HEX: #BCB2DC
RGB: (188,178,220)
#BCB2DC contains red, green and blue colors in about the same proportion. Web safe color of #BCB2DC is #CC99CC (or #C9C).
#BCB2DC color RGB value is (188,178,220).
RGB: (188,178,220) (74%,70%,86%)
R 188 of 255 = 74%
G 178 of 255 = 70%
B 220 of 255 = 86%
R + G + B ~ 77%. #BCB2DC is quite light color.
R + G + B =
188 + 178 + 220 = 586 (100%)
R 188 of 586 ~ 32.08%
G 178 of 586 ~ 30.38%
B 220 of 586 ~ 37.54%
#BCB2DC color CMYK value is (15,19,0,14).
CMYK: (15,19,0,14) C15M19Y0K14 (15%,19%,0%,14%) (0.15/0.19/0.00/0.14)
BC | B2 | DC | |
---|---|---|---|
RGB | 188 | 178 | 220 |
HSL | 254° | 37.50% | 78.04% |
HSB/HSV | 254° | 19.09% | 86.27% |
CMYK | 14.55% | 19.09% | 0.00% |
13.73% |
HEX | BC | B2 | DC |
Decimal | 188 | 178 | 220 |
Binary | 10111100 | 10110010 | 11011100 |
Octal | 274 | 262 | 334 |
Examples of css and html codes for elements with #BCB2DC color. Also use rgb(188,178,220) instead hex code.
.myTextColor { color: #BCB2DC; }
<p style="color:#BCB2DC">This sample text font color is #BCB2DC.</p>
This text font color is #BCB2DC.
.myBgColor { background-color: #BCB2DC; }
<div style="background-color:#BCB2DC">Inner text</div>
This div background color is #BCB2DC.
.myBorderColor { border: 1px solid #BCB2DC; }
<div style="border:3px solid #BCB2DC">Div</div>
This div border color is #BCB2DC.
.myOpacity80 { color: #BCB2DC; opacity: 0.8; }
<p style="color:#BCB2DC;opacity:0.8;">80%</p>
Text with #BCB2DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCB2DC;}
<p style="text-shadow: 3px 3px 1px #BCB2DC">Text here.</p>
This text has shadow with #BCB2DC color.
.textShadow {text-shadow: 3px 3px 1px #BCB2DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCB2DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCB2DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCB2DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCB2DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCB2DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCB2DC; -webkit-box-shadow: 1px 1px 3px 2px #BCB2DC; box-shadow: 1px 1px 3px 2px #BCB2DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCB2DC; -webkit-box-shadow: 1px 1px 3px 2px #BCB2DC; box-shadow:1px 1px 3px 2px #BCB2DC;">
Div content here</div>
This text has color #BCB2DC on black background.
This text has color #BCB2DC on white background.
This text has black color on #BCB2DC background.
This text has white color on #BCB2DC background.