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