HEX: #BCA8DD
RGB: (188,168,221)
#BCA8DD contains red, green and blue colors in about the same proportion. Web safe color of #BCA8DD is #CC99CC (or #C9C).
#BCA8DD color RGB value is (188,168,221).
RGB: (188,168,221) (74%,66%,87%)
R 188 of 255 = 74%
G 168 of 255 = 66%
B 221 of 255 = 87%
R + G + B ~ 76%. #BCA8DD is quite light color.
R + G + B =
188 + 168 + 221 = 577 (100%)
R 188 of 577 ~ 32.58%
G 168 of 577 ~ 29.12%
B 221 of 577 ~ 38.3%
#BCA8DD color CMYK value is (15,24,0,13).
CMYK: (15,24,0,13) C15M24Y0K13 (15%,24%,0%,13%) (0.15/0.24/0.00/0.13)
BC | A8 | DD | |
---|---|---|---|
RGB | 188 | 168 | 221 |
HSL | 263° | 43.80% | 76.27% |
HSB/HSV | 263° | 23.98% | 86.67% |
CMYK | 14.93% | 23.98% | 0.00% |
13.33% |
HEX | BC | A8 | DD |
Decimal | 188 | 168 | 221 |
Binary | 10111100 | 10101000 | 11011101 |
Octal | 274 | 250 | 335 |
Examples of css and html codes for elements with #BCA8DD color. Also use rgb(188,168,221) instead hex code.
.myTextColor { color: #BCA8DD; }
<p style="color:#BCA8DD">This sample text font color is #BCA8DD.</p>
This text font color is #BCA8DD.
.myBgColor { background-color: #BCA8DD; }
<div style="background-color:#BCA8DD">Inner text</div>
This div background color is #BCA8DD.
.myBorderColor { border: 1px solid #BCA8DD; }
<div style="border:3px solid #BCA8DD">Div</div>
This div border color is #BCA8DD.
.myOpacity80 { color: #BCA8DD; opacity: 0.8; }
<p style="color:#BCA8DD;opacity:0.8;">80%</p>
Text with #BCA8DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCA8DD;}
<p style="text-shadow: 3px 3px 1px #BCA8DD">Text here.</p>
This text has shadow with #BCA8DD color.
.textShadow {text-shadow: 3px 3px 1px #BCA8DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCA8DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCA8DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCA8DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCA8DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCA8DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCA8DD; -webkit-box-shadow: 1px 1px 3px 2px #BCA8DD; box-shadow: 1px 1px 3px 2px #BCA8DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCA8DD; -webkit-box-shadow: 1px 1px 3px 2px #BCA8DD; box-shadow:1px 1px 3px 2px #BCA8DD;">
Div content here</div>
This text has color #BCA8DD on black background.
This text has color #BCA8DD on white background.
This text has black color on #BCA8DD background.
This text has white color on #BCA8DD background.