HEX: #BCDBEB
RGB: (188,219,235)
#BCDBEB contains red, green and blue colors in about the same proportion. Web safe color of #BCDBEB is #CCCCFF (or #CCF).
#BCDBEB color RGB value is (188,219,235).
RGB: (188,219,235) (74%,86%,92%)
R 188 of 255 = 74%
G 219 of 255 = 86%
B 235 of 255 = 92%
R + G + B ~ 84%. #BCDBEB is quite light color.
R + G + B =
188 + 219 + 235 = 642 (100%)
R 188 of 642 ~ 29.28%
G 219 of 642 ~ 34.11%
B 235 of 642 ~ 36.6%
#BCDBEB color CMYK value is (20,7,0,8).
CMYK: (20,7,0,8) C20M7Y0K8 (20%,7%,0%,8%) (0.20/0.07/0.00/0.08)
BC | DB | EB | |
---|---|---|---|
RGB | 188 | 219 | 235 |
HSL | 200° | 54.02% | 82.94% |
HSB/HSV | 200° | 20.00% | 92.16% |
CMYK | 20.00% | 6.81% | 0.00% |
7.84% |
HEX | BC | DB | EB |
Decimal | 188 | 219 | 235 |
Binary | 10111100 | 11011011 | 11101011 |
Octal | 274 | 333 | 353 |
Examples of css and html codes for elements with #BCDBEB color. Also use rgb(188,219,235) instead hex code.
.myTextColor { color: #BCDBEB; }
<p style="color:#BCDBEB">This sample text font color is #BCDBEB.</p>
This text font color is #BCDBEB.
.myBgColor { background-color: #BCDBEB; }
<div style="background-color:#BCDBEB">Inner text</div>
This div background color is #BCDBEB.
.myBorderColor { border: 1px solid #BCDBEB; }
<div style="border:3px solid #BCDBEB">Div</div>
This div border color is #BCDBEB.
.myOpacity80 { color: #BCDBEB; opacity: 0.8; }
<p style="color:#BCDBEB;opacity:0.8;">80%</p>
Text with #BCDBEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCDBEB;}
<p style="text-shadow: 3px 3px 1px #BCDBEB">Text here.</p>
This text has shadow with #BCDBEB color.
.textShadow {text-shadow: 3px 3px 1px #BCDBEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCDBEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCDBEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCDBEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCDBEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCDBEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCDBEB; -webkit-box-shadow: 1px 1px 3px 2px #BCDBEB; box-shadow: 1px 1px 3px 2px #BCDBEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCDBEB; -webkit-box-shadow: 1px 1px 3px 2px #BCDBEB; box-shadow:1px 1px 3px 2px #BCDBEB;">
Div content here</div>
This text has color #BCDBEB on black background.
This text has color #BCDBEB on white background.
This text has black color on #BCDBEB background.
This text has white color on #BCDBEB background.