HEX: #BCC0DC
RGB: (188,192,220)
#BCC0DC contains red, green and blue colors in about the same proportion. Web safe color of #BCC0DC is #CCCCCC (or #CCC).
#BCC0DC color RGB value is (188,192,220).
RGB: (188,192,220) (74%,75%,86%)
R 188 of 255 = 74%
G 192 of 255 = 75%
B 220 of 255 = 86%
R + G + B ~ 78%. #BCC0DC is quite light color.
R + G + B =
188 + 192 + 220 = 600 (100%)
R 188 of 600 ~ 31.33%
G 192 of 600 ~ 32%
B 220 of 600 ~ 36.67%
#BCC0DC color CMYK value is (15,13,0,14).
CMYK: (15,13,0,14) C15M13Y0K14 (15%,13%,0%,14%) (0.15/0.13/0.00/0.14)
BC | C0 | DC | |
---|---|---|---|
RGB | 188 | 192 | 220 |
HSL | 233° | 31.37% | 80.00% |
HSB/HSV | 233° | 14.55% | 86.27% |
CMYK | 14.55% | 12.73% | 0.00% |
13.73% |
HEX | BC | C0 | DC |
Decimal | 188 | 192 | 220 |
Binary | 10111100 | 11000000 | 11011100 |
Octal | 274 | 300 | 334 |
Examples of css and html codes for elements with #BCC0DC color. Also use rgb(188,192,220) instead hex code.
.myTextColor { color: #BCC0DC; }
<p style="color:#BCC0DC">This sample text font color is #BCC0DC.</p>
This text font color is #BCC0DC.
.myBgColor { background-color: #BCC0DC; }
<div style="background-color:#BCC0DC">Inner text</div>
This div background color is #BCC0DC.
.myBorderColor { border: 1px solid #BCC0DC; }
<div style="border:3px solid #BCC0DC">Div</div>
This div border color is #BCC0DC.
.myOpacity80 { color: #BCC0DC; opacity: 0.8; }
<p style="color:#BCC0DC;opacity:0.8;">80%</p>
Text with #BCC0DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC0DC;}
<p style="text-shadow: 3px 3px 1px #BCC0DC">Text here.</p>
This text has shadow with #BCC0DC color.
.textShadow {text-shadow: 3px 3px 1px #BCC0DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC0DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC0DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC0DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC0DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC0DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC0DC; -webkit-box-shadow: 1px 1px 3px 2px #BCC0DC; box-shadow: 1px 1px 3px 2px #BCC0DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC0DC; -webkit-box-shadow: 1px 1px 3px 2px #BCC0DC; box-shadow:1px 1px 3px 2px #BCC0DC;">
Div content here</div>
This text has color #BCC0DC on black background.
This text has color #BCC0DC on white background.
This text has black color on #BCC0DC background.
This text has white color on #BCC0DC background.