HEX: #BCC1EE
RGB: (188,193,238)
#BCC1EE contains red, green and blue colors in about the same proportion. Web safe color of #BCC1EE is #CCCCFF (or #CCF).
#BCC1EE color RGB value is (188,193,238).
RGB: (188,193,238) (74%,76%,93%)
R 188 of 255 = 74%
G 193 of 255 = 76%
B 238 of 255 = 93%
R + G + B ~ 81%. #BCC1EE is quite light color.
R + G + B =
188 + 193 + 238 = 619 (100%)
R 188 of 619 ~ 30.37%
G 193 of 619 ~ 31.18%
B 238 of 619 ~ 38.45%
#BCC1EE color CMYK value is (21,19,0,7).
CMYK: (21,19,0,7) C21M19Y0K7 (21%,19%,0%,7%) (0.21/0.19/0.00/0.07)
BC | C1 | EE | |
---|---|---|---|
RGB | 188 | 193 | 238 |
HSL | 234° | 59.52% | 83.53% |
HSB/HSV | 234° | 21.01% | 93.33% |
CMYK | 21.01% | 18.91% | 0.00% |
6.67% |
HEX | BC | C1 | EE |
Decimal | 188 | 193 | 238 |
Binary | 10111100 | 11000001 | 11101110 |
Octal | 274 | 301 | 356 |
Examples of css and html codes for elements with #BCC1EE color. Also use rgb(188,193,238) instead hex code.
.myTextColor { color: #BCC1EE; }
<p style="color:#BCC1EE">This sample text font color is #BCC1EE.</p>
This text font color is #BCC1EE.
.myBgColor { background-color: #BCC1EE; }
<div style="background-color:#BCC1EE">Inner text</div>
This div background color is #BCC1EE.
.myBorderColor { border: 1px solid #BCC1EE; }
<div style="border:3px solid #BCC1EE">Div</div>
This div border color is #BCC1EE.
.myOpacity80 { color: #BCC1EE; opacity: 0.8; }
<p style="color:#BCC1EE;opacity:0.8;">80%</p>
Text with #BCC1EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC1EE;}
<p style="text-shadow: 3px 3px 1px #BCC1EE">Text here.</p>
This text has shadow with #BCC1EE color.
.textShadow {text-shadow: 3px 3px 1px #BCC1EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC1EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC1EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC1EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC1EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC1EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC1EE; -webkit-box-shadow: 1px 1px 3px 2px #BCC1EE; box-shadow: 1px 1px 3px 2px #BCC1EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC1EE; -webkit-box-shadow: 1px 1px 3px 2px #BCC1EE; box-shadow:1px 1px 3px 2px #BCC1EE;">
Div content here</div>
This text has color #BCC1EE on black background.
This text has color #BCC1EE on white background.
This text has black color on #BCC1EE background.
This text has white color on #BCC1EE background.