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