HEX: #BCC2DE
RGB: (188,194,222)
#BCC2DE contains red, green and blue colors in about the same proportion. Web safe color of #BCC2DE is #CCCCCC (or #CCC).
#BCC2DE color RGB value is (188,194,222).
RGB: (188,194,222) (74%,76%,87%)
R 188 of 255 = 74%
G 194 of 255 = 76%
B 222 of 255 = 87%
R + G + B ~ 79%. #BCC2DE is quite light color.
R + G + B =
188 + 194 + 222 = 604 (100%)
R 188 of 604 ~ 31.13%
G 194 of 604 ~ 32.12%
B 222 of 604 ~ 36.75%
#BCC2DE color CMYK value is (15,13,0,13).
CMYK: (15,13,0,13) C15M13Y0K13 (15%,13%,0%,13%) (0.15/0.13/0.00/0.13)
BC | C2 | DE | |
---|---|---|---|
RGB | 188 | 194 | 222 |
HSL | 229° | 34.00% | 80.39% |
HSB/HSV | 229° | 15.32% | 87.06% |
CMYK | 15.32% | 12.61% | 0.00% |
12.94% |
HEX | BC | C2 | DE |
Decimal | 188 | 194 | 222 |
Binary | 10111100 | 11000010 | 11011110 |
Octal | 274 | 302 | 336 |
Examples of css and html codes for elements with #BCC2DE color. Also use rgb(188,194,222) instead hex code.
.myTextColor { color: #BCC2DE; }
<p style="color:#BCC2DE">This sample text font color is #BCC2DE.</p>
This text font color is #BCC2DE.
.myBgColor { background-color: #BCC2DE; }
<div style="background-color:#BCC2DE">Inner text</div>
This div background color is #BCC2DE.
.myBorderColor { border: 1px solid #BCC2DE; }
<div style="border:3px solid #BCC2DE">Div</div>
This div border color is #BCC2DE.
.myOpacity80 { color: #BCC2DE; opacity: 0.8; }
<p style="color:#BCC2DE;opacity:0.8;">80%</p>
Text with #BCC2DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC2DE;}
<p style="text-shadow: 3px 3px 1px #BCC2DE">Text here.</p>
This text has shadow with #BCC2DE color.
.textShadow {text-shadow: 3px 3px 1px #BCC2DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC2DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC2DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC2DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC2DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC2DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC2DE; -webkit-box-shadow: 1px 1px 3px 2px #BCC2DE; box-shadow: 1px 1px 3px 2px #BCC2DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC2DE; -webkit-box-shadow: 1px 1px 3px 2px #BCC2DE; box-shadow:1px 1px 3px 2px #BCC2DE;">
Div content here</div>
This text has color #BCC2DE on black background.
This text has color #BCC2DE on white background.
This text has black color on #BCC2DE background.
This text has white color on #BCC2DE background.