HEX: #BCD8CC
RGB: (188,216,204)
#BCD8CC contains red, green and blue colors in about the same proportion. Web safe color of #BCD8CC is #CCCCCC (or #CCC).
#BCD8CC color RGB value is (188,216,204).
RGB: (188,216,204) (74%,85%,80%)
R 188 of 255 = 74%
G 216 of 255 = 85%
B 204 of 255 = 80%
R + G + B ~ 80%. #BCD8CC is quite light color.
R + G + B =
188 + 216 + 204 = 608 (100%)
R 188 of 608 ~ 30.92%
G 216 of 608 ~ 35.53%
B 204 of 608 ~ 33.55%
#BCD8CC color CMYK value is (13,0,6,15).
CMYK: (13,0,6,15) C13M0Y6K15 (13%,0%,6%,15%) (0.13/0.00/0.06/0.15)
BC | D8 | CC | |
---|---|---|---|
RGB | 188 | 216 | 204 |
HSL | 154° | 26.42% | 79.22% |
HSB/HSV | 154° | 12.96% | 84.71% |
CMYK | 12.96% | 0.00% | 5.56% |
15.29% |
HEX | BC | D8 | CC |
Decimal | 188 | 216 | 204 |
Binary | 10111100 | 11011000 | 11001100 |
Octal | 274 | 330 | 314 |
Examples of css and html codes for elements with #BCD8CC color. Also use rgb(188,216,204) instead hex code.
.myTextColor { color: #BCD8CC; }
<p style="color:#BCD8CC">This sample text font color is #BCD8CC.</p>
This text font color is #BCD8CC.
.myBgColor { background-color: #BCD8CC; }
<div style="background-color:#BCD8CC">Inner text</div>
This div background color is #BCD8CC.
.myBorderColor { border: 1px solid #BCD8CC; }
<div style="border:3px solid #BCD8CC">Div</div>
This div border color is #BCD8CC.
.myOpacity80 { color: #BCD8CC; opacity: 0.8; }
<p style="color:#BCD8CC;opacity:0.8;">80%</p>
Text with #BCD8CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCD8CC;}
<p style="text-shadow: 3px 3px 1px #BCD8CC">Text here.</p>
This text has shadow with #BCD8CC color.
.textShadow {text-shadow: 3px 3px 1px #BCD8CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCD8CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCD8CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCD8CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCD8CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCD8CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCD8CC; -webkit-box-shadow: 1px 1px 3px 2px #BCD8CC; box-shadow: 1px 1px 3px 2px #BCD8CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCD8CC; -webkit-box-shadow: 1px 1px 3px 2px #BCD8CC; box-shadow:1px 1px 3px 2px #BCD8CC;">
Div content here</div>
This text has color #BCD8CC on black background.
This text has color #BCD8CC on white background.
This text has black color on #BCD8CC background.
This text has white color on #BCD8CC background.