HEX: #BCCDCC
RGB: (188,205,204)
#BCCDCC contains red, green and blue colors in about the same proportion. Web safe color of #BCCDCC is #CCCCCC (or #CCC).
#BCCDCC color RGB value is (188,205,204).
RGB: (188,205,204) (74%,80%,80%)
R 188 of 255 = 74%
G 205 of 255 = 80%
B 204 of 255 = 80%
R + G + B ~ 78%. #BCCDCC is quite light color.
R + G + B =
188 + 205 + 204 = 597 (100%)
R 188 of 597 ~ 31.49%
G 205 of 597 ~ 34.34%
B 204 of 597 ~ 34.17%
#BCCDCC color CMYK value is (8,0,0,20).
CMYK: (8,0,0,20) C8M0Y0K20 (8%,0%,0%,20%) (0.08/0.00/0.00/0.20)
BC | CD | CC | |
---|---|---|---|
RGB | 188 | 205 | 204 |
HSL | 176° | 14.53% | 77.06% |
HSB/HSV | 176° | 8.29% | 80.39% |
CMYK | 8.29% | 0.00% | 0.49% |
19.61% |
HEX | BC | CD | CC |
Decimal | 188 | 205 | 204 |
Binary | 10111100 | 11001101 | 11001100 |
Octal | 274 | 315 | 314 |
Examples of css and html codes for elements with #BCCDCC color. Also use rgb(188,205,204) instead hex code.
.myTextColor { color: #BCCDCC; }
<p style="color:#BCCDCC">This sample text font color is #BCCDCC.</p>
This text font color is #BCCDCC.
.myBgColor { background-color: #BCCDCC; }
<div style="background-color:#BCCDCC">Inner text</div>
This div background color is #BCCDCC.
.myBorderColor { border: 1px solid #BCCDCC; }
<div style="border:3px solid #BCCDCC">Div</div>
This div border color is #BCCDCC.
.myOpacity80 { color: #BCCDCC; opacity: 0.8; }
<p style="color:#BCCDCC;opacity:0.8;">80%</p>
Text with #BCCDCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCCDCC;}
<p style="text-shadow: 3px 3px 1px #BCCDCC">Text here.</p>
This text has shadow with #BCCDCC color.
.textShadow {text-shadow: 3px 3px 1px #BCCDCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCCDCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCCDCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCCDCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCCDCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCCDCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCCDCC; -webkit-box-shadow: 1px 1px 3px 2px #BCCDCC; box-shadow: 1px 1px 3px 2px #BCCDCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCCDCC; -webkit-box-shadow: 1px 1px 3px 2px #BCCDCC; box-shadow:1px 1px 3px 2px #BCCDCC;">
Div content here</div>
This text has color #BCCDCC on black background.
This text has color #BCCDCC on white background.
This text has black color on #BCCDCC background.
This text has white color on #BCCDCC background.