HEX: #BCAAD1
RGB: (188,170,209)
#BCAAD1 contains red, green and blue colors in about the same proportion. Web safe color of #BCAAD1 is #CC99CC (or #C9C).
#BCAAD1 color RGB value is (188,170,209).
RGB: (188,170,209) (74%,67%,82%)
R 188 of 255 = 74%
G 170 of 255 = 67%
B 209 of 255 = 82%
R + G + B ~ 74%. #BCAAD1 is quite light color.
R + G + B =
188 + 170 + 209 = 567 (100%)
R 188 of 567 ~ 33.16%
G 170 of 567 ~ 29.98%
B 209 of 567 ~ 36.86%
#BCAAD1 color CMYK value is (10,19,0,18).
CMYK: (10,19,0,18) C10M19Y0K18 (10%,19%,0%,18%) (0.10/0.19/0.00/0.18)
BC | AA | D1 | |
---|---|---|---|
RGB | 188 | 170 | 209 |
HSL | 268° | 29.77% | 74.31% |
HSB/HSV | 268° | 18.66% | 81.96% |
CMYK | 10.05% | 18.66% | 0.00% |
18.04% |
HEX | BC | AA | D1 |
Decimal | 188 | 170 | 209 |
Binary | 10111100 | 10101010 | 11010001 |
Octal | 274 | 252 | 321 |
Examples of css and html codes for elements with #BCAAD1 color. Also use rgb(188,170,209) instead hex code.
.myTextColor { color: #BCAAD1; }
<p style="color:#BCAAD1">This sample text font color is #BCAAD1.</p>
This text font color is #BCAAD1.
.myBgColor { background-color: #BCAAD1; }
<div style="background-color:#BCAAD1">Inner text</div>
This div background color is #BCAAD1.
.myBorderColor { border: 1px solid #BCAAD1; }
<div style="border:3px solid #BCAAD1">Div</div>
This div border color is #BCAAD1.
.myOpacity80 { color: #BCAAD1; opacity: 0.8; }
<p style="color:#BCAAD1;opacity:0.8;">80%</p>
Text with #BCAAD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCAAD1;}
<p style="text-shadow: 3px 3px 1px #BCAAD1">Text here.</p>
This text has shadow with #BCAAD1 color.
.textShadow {text-shadow: 3px 3px 1px #BCAAD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCAAD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCAAD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCAAD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCAAD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCAAD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCAAD1; -webkit-box-shadow: 1px 1px 3px 2px #BCAAD1; box-shadow: 1px 1px 3px 2px #BCAAD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCAAD1; -webkit-box-shadow: 1px 1px 3px 2px #BCAAD1; box-shadow:1px 1px 3px 2px #BCAAD1;">
Div content here</div>
This text has color #BCAAD1 on black background.
This text has color #BCAAD1 on white background.
This text has black color on #BCAAD1 background.
This text has white color on #BCAAD1 background.