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