HEX: #BCA7DC
RGB: (188,167,220)
#BCA7DC contains red, green and blue colors in about the same proportion. Web safe color of #BCA7DC is #CC99CC (or #C9C).
#BCA7DC color RGB value is (188,167,220).
RGB: (188,167,220) (74%,65%,86%)
R 188 of 255 = 74%
G 167 of 255 = 65%
B 220 of 255 = 86%
R + G + B ~ 75%. #BCA7DC is quite light color.
R + G + B =
188 + 167 + 220 = 575 (100%)
R 188 of 575 ~ 32.7%
G 167 of 575 ~ 29.04%
B 220 of 575 ~ 38.26%
#BCA7DC color CMYK value is (15,24,0,14).
CMYK: (15,24,0,14) C15M24Y0K14 (15%,24%,0%,14%) (0.15/0.24/0.00/0.14)
BC | A7 | DC | |
---|---|---|---|
RGB | 188 | 167 | 220 |
HSL | 264° | 43.09% | 75.88% |
HSB/HSV | 264° | 24.09% | 86.27% |
CMYK | 14.55% | 24.09% | 0.00% |
13.73% |
HEX | BC | A7 | DC |
Decimal | 188 | 167 | 220 |
Binary | 10111100 | 10100111 | 11011100 |
Octal | 274 | 247 | 334 |
Examples of css and html codes for elements with #BCA7DC color. Also use rgb(188,167,220) instead hex code.
.myTextColor { color: #BCA7DC; }
<p style="color:#BCA7DC">This sample text font color is #BCA7DC.</p>
This text font color is #BCA7DC.
.myBgColor { background-color: #BCA7DC; }
<div style="background-color:#BCA7DC">Inner text</div>
This div background color is #BCA7DC.
.myBorderColor { border: 1px solid #BCA7DC; }
<div style="border:3px solid #BCA7DC">Div</div>
This div border color is #BCA7DC.
.myOpacity80 { color: #BCA7DC; opacity: 0.8; }
<p style="color:#BCA7DC;opacity:0.8;">80%</p>
Text with #BCA7DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCA7DC;}
<p style="text-shadow: 3px 3px 1px #BCA7DC">Text here.</p>
This text has shadow with #BCA7DC color.
.textShadow {text-shadow: 3px 3px 1px #BCA7DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCA7DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCA7DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCA7DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCA7DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCA7DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCA7DC; -webkit-box-shadow: 1px 1px 3px 2px #BCA7DC; box-shadow: 1px 1px 3px 2px #BCA7DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCA7DC; -webkit-box-shadow: 1px 1px 3px 2px #BCA7DC; box-shadow:1px 1px 3px 2px #BCA7DC;">
Div content here</div>
This text has color #BCA7DC on black background.
This text has color #BCA7DC on white background.
This text has black color on #BCA7DC background.
This text has white color on #BCA7DC background.