HEX: #BCAFDE
RGB: (188,175,222)
#BCAFDE contains red, green and blue colors in about the same proportion. Web safe color of #BCAFDE is #CC99CC (or #C9C).
#BCAFDE color RGB value is (188,175,222).
RGB: (188,175,222) (74%,69%,87%)
R 188 of 255 = 74%
G 175 of 255 = 69%
B 222 of 255 = 87%
R + G + B ~ 77%. #BCAFDE is quite light color.
R + G + B =
188 + 175 + 222 = 585 (100%)
R 188 of 585 ~ 32.14%
G 175 of 585 ~ 29.91%
B 222 of 585 ~ 37.95%
#BCAFDE color CMYK value is (15,21,0,13).
CMYK: (15,21,0,13) C15M21Y0K13 (15%,21%,0%,13%) (0.15/0.21/0.00/0.13)
BC | AF | DE | |
---|---|---|---|
RGB | 188 | 175 | 222 |
HSL | 257° | 41.59% | 77.84% |
HSB/HSV | 257° | 21.17% | 87.06% |
CMYK | 15.32% | 21.17% | 0.00% |
12.94% |
HEX | BC | AF | DE |
Decimal | 188 | 175 | 222 |
Binary | 10111100 | 10101111 | 11011110 |
Octal | 274 | 257 | 336 |
Examples of css and html codes for elements with #BCAFDE color. Also use rgb(188,175,222) instead hex code.
.myTextColor { color: #BCAFDE; }
<p style="color:#BCAFDE">This sample text font color is #BCAFDE.</p>
This text font color is #BCAFDE.
.myBgColor { background-color: #BCAFDE; }
<div style="background-color:#BCAFDE">Inner text</div>
This div background color is #BCAFDE.
.myBorderColor { border: 1px solid #BCAFDE; }
<div style="border:3px solid #BCAFDE">Div</div>
This div border color is #BCAFDE.
.myOpacity80 { color: #BCAFDE; opacity: 0.8; }
<p style="color:#BCAFDE;opacity:0.8;">80%</p>
Text with #BCAFDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCAFDE;}
<p style="text-shadow: 3px 3px 1px #BCAFDE">Text here.</p>
This text has shadow with #BCAFDE color.
.textShadow {text-shadow: 3px 3px 1px #BCAFDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCAFDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCAFDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCAFDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCAFDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCAFDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCAFDE; -webkit-box-shadow: 1px 1px 3px 2px #BCAFDE; box-shadow: 1px 1px 3px 2px #BCAFDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCAFDE; -webkit-box-shadow: 1px 1px 3px 2px #BCAFDE; box-shadow:1px 1px 3px 2px #BCAFDE;">
Div content here</div>
This text has color #BCAFDE on black background.
This text has color #BCAFDE on white background.
This text has black color on #BCAFDE background.
This text has white color on #BCAFDE background.