HEX: #BCD0DD
RGB: (188,208,221)
#BCD0DD contains red, green and blue colors in about the same proportion. Web safe color of #BCD0DD is #CCCCCC (or #CCC).
#BCD0DD color RGB value is (188,208,221).
RGB: (188,208,221) (74%,82%,87%)
R 188 of 255 = 74%
G 208 of 255 = 82%
B 221 of 255 = 87%
R + G + B ~ 81%. #BCD0DD is quite light color.
R + G + B =
188 + 208 + 221 = 617 (100%)
R 188 of 617 ~ 30.47%
G 208 of 617 ~ 33.71%
B 221 of 617 ~ 35.82%
#BCD0DD color CMYK value is (15,6,0,13).
CMYK: (15,6,0,13) C15M6Y0K13 (15%,6%,0%,13%) (0.15/0.06/0.00/0.13)
BC | D0 | DD | |
---|---|---|---|
RGB | 188 | 208 | 221 |
HSL | 204° | 32.67% | 80.20% |
HSB/HSV | 204° | 14.93% | 86.67% |
CMYK | 14.93% | 5.88% | 0.00% |
13.33% |
HEX | BC | D0 | DD |
Decimal | 188 | 208 | 221 |
Binary | 10111100 | 11010000 | 11011101 |
Octal | 274 | 320 | 335 |
Examples of css and html codes for elements with #BCD0DD color. Also use rgb(188,208,221) instead hex code.
.myTextColor { color: #BCD0DD; }
<p style="color:#BCD0DD">This sample text font color is #BCD0DD.</p>
This text font color is #BCD0DD.
.myBgColor { background-color: #BCD0DD; }
<div style="background-color:#BCD0DD">Inner text</div>
This div background color is #BCD0DD.
.myBorderColor { border: 1px solid #BCD0DD; }
<div style="border:3px solid #BCD0DD">Div</div>
This div border color is #BCD0DD.
.myOpacity80 { color: #BCD0DD; opacity: 0.8; }
<p style="color:#BCD0DD;opacity:0.8;">80%</p>
Text with #BCD0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCD0DD;}
<p style="text-shadow: 3px 3px 1px #BCD0DD">Text here.</p>
This text has shadow with #BCD0DD color.
.textShadow {text-shadow: 3px 3px 1px #BCD0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCD0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCD0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCD0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCD0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCD0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCD0DD; -webkit-box-shadow: 1px 1px 3px 2px #BCD0DD; box-shadow: 1px 1px 3px 2px #BCD0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCD0DD; -webkit-box-shadow: 1px 1px 3px 2px #BCD0DD; box-shadow:1px 1px 3px 2px #BCD0DD;">
Div content here</div>
This text has color #BCD0DD on black background.
This text has color #BCD0DD on white background.
This text has black color on #BCD0DD background.
This text has white color on #BCD0DD background.