HEX: #BCC6DB
RGB: (188,198,219)
#BCC6DB contains red, green and blue colors in about the same proportion. Web safe color of #BCC6DB is #CCCCCC (or #CCC).
#BCC6DB color RGB value is (188,198,219).
RGB: (188,198,219) (74%,78%,86%)
R 188 of 255 = 74%
G 198 of 255 = 78%
B 219 of 255 = 86%
R + G + B ~ 79%. #BCC6DB is quite light color.
R + G + B =
188 + 198 + 219 = 605 (100%)
R 188 of 605 ~ 31.07%
G 198 of 605 ~ 32.73%
B 219 of 605 ~ 36.2%
#BCC6DB color CMYK value is (14,10,0,14).
CMYK: (14,10,0,14) C14M10Y0K14 (14%,10%,0%,14%) (0.14/0.10/0.00/0.14)
BC | C6 | DB | |
---|---|---|---|
RGB | 188 | 198 | 219 |
HSL | 221° | 30.10% | 79.80% |
HSB/HSV | 221° | 14.16% | 85.88% |
CMYK | 14.16% | 9.59% | 0.00% |
14.12% |
HEX | BC | C6 | DB |
Decimal | 188 | 198 | 219 |
Binary | 10111100 | 11000110 | 11011011 |
Octal | 274 | 306 | 333 |
Examples of css and html codes for elements with #BCC6DB color. Also use rgb(188,198,219) instead hex code.
.myTextColor { color: #BCC6DB; }
<p style="color:#BCC6DB">This sample text font color is #BCC6DB.</p>
This text font color is #BCC6DB.
.myBgColor { background-color: #BCC6DB; }
<div style="background-color:#BCC6DB">Inner text</div>
This div background color is #BCC6DB.
.myBorderColor { border: 1px solid #BCC6DB; }
<div style="border:3px solid #BCC6DB">Div</div>
This div border color is #BCC6DB.
.myOpacity80 { color: #BCC6DB; opacity: 0.8; }
<p style="color:#BCC6DB;opacity:0.8;">80%</p>
Text with #BCC6DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC6DB;}
<p style="text-shadow: 3px 3px 1px #BCC6DB">Text here.</p>
This text has shadow with #BCC6DB color.
.textShadow {text-shadow: 3px 3px 1px #BCC6DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC6DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC6DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC6DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC6DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC6DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC6DB; -webkit-box-shadow: 1px 1px 3px 2px #BCC6DB; box-shadow: 1px 1px 3px 2px #BCC6DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC6DB; -webkit-box-shadow: 1px 1px 3px 2px #BCC6DB; box-shadow:1px 1px 3px 2px #BCC6DB;">
Div content here</div>
This text has color #BCC6DB on black background.
This text has color #BCC6DB on white background.
This text has black color on #BCC6DB background.
This text has white color on #BCC6DB background.