HEX: #BCCBD9
RGB: (188,203,217)
#BCCBD9 contains red, green and blue colors in about the same proportion. Web safe color of #BCCBD9 is #CCCCCC (or #CCC).
#BCCBD9 color RGB value is (188,203,217).
RGB: (188,203,217) (74%,80%,85%)
R 188 of 255 = 74%
G 203 of 255 = 80%
B 217 of 255 = 85%
R + G + B ~ 80%. #BCCBD9 is quite light color.
R + G + B =
188 + 203 + 217 = 608 (100%)
R 188 of 608 ~ 30.92%
G 203 of 608 ~ 33.39%
B 217 of 608 ~ 35.69%
#BCCBD9 color CMYK value is (13,6,0,15).
CMYK: (13,6,0,15) C13M6Y0K15 (13%,6%,0%,15%) (0.13/0.06/0.00/0.15)
BC | CB | D9 | |
---|---|---|---|
RGB | 188 | 203 | 217 |
HSL | 209° | 27.62% | 79.41% |
HSB/HSV | 209° | 13.36% | 85.10% |
CMYK | 13.36% | 6.45% | 0.00% |
14.90% |
HEX | BC | CB | D9 |
Decimal | 188 | 203 | 217 |
Binary | 10111100 | 11001011 | 11011001 |
Octal | 274 | 313 | 331 |
Examples of css and html codes for elements with #BCCBD9 color. Also use rgb(188,203,217) instead hex code.
.myTextColor { color: #BCCBD9; }
<p style="color:#BCCBD9">This sample text font color is #BCCBD9.</p>
This text font color is #BCCBD9.
.myBgColor { background-color: #BCCBD9; }
<div style="background-color:#BCCBD9">Inner text</div>
This div background color is #BCCBD9.
.myBorderColor { border: 1px solid #BCCBD9; }
<div style="border:3px solid #BCCBD9">Div</div>
This div border color is #BCCBD9.
.myOpacity80 { color: #BCCBD9; opacity: 0.8; }
<p style="color:#BCCBD9;opacity:0.8;">80%</p>
Text with #BCCBD9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCCBD9;}
<p style="text-shadow: 3px 3px 1px #BCCBD9">Text here.</p>
This text has shadow with #BCCBD9 color.
.textShadow {text-shadow: 3px 3px 1px #BCCBD9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCCBD9, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCCBD9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCCBD9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCCBD9, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCCBD9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCCBD9; -webkit-box-shadow: 1px 1px 3px 2px #BCCBD9; box-shadow: 1px 1px 3px 2px #BCCBD9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCCBD9; -webkit-box-shadow: 1px 1px 3px 2px #BCCBD9; box-shadow:1px 1px 3px 2px #BCCBD9;">
Div content here</div>
This text has color #BCCBD9 on black background.
This text has color #BCCBD9 on white background.
This text has black color on #BCCBD9 background.
This text has white color on #BCCBD9 background.