HEX: #BCCCCE
RGB: (188,204,206)
#BCCCCE contains red, green and blue colors in about the same proportion. Web safe color of #BCCCCE is #CCCCCC (or #CCC).
#BCCCCE color RGB value is (188,204,206).
RGB: (188,204,206) (74%,80%,81%)
R 188 of 255 = 74%
G 204 of 255 = 80%
B 206 of 255 = 81%
R + G + B ~ 78%. #BCCCCE is quite light color.
R + G + B =
188 + 204 + 206 = 598 (100%)
R 188 of 598 ~ 31.44%
G 204 of 598 ~ 34.11%
B 206 of 598 ~ 34.45%
#BCCCCE color CMYK value is (9,1,0,19).
CMYK: (9,1,0,19) C9M1Y0K19 (9%,1%,0%,19%) (0.09/0.01/0.00/0.19)
BC | CC | CE | |
---|---|---|---|
RGB | 188 | 204 | 206 |
HSL | 187° | 15.52% | 77.25% |
HSB/HSV | 187° | 8.74% | 80.78% |
CMYK | 8.74% | 0.97% | 0.00% |
19.22% |
HEX | BC | CC | CE |
Decimal | 188 | 204 | 206 |
Binary | 10111100 | 11001100 | 11001110 |
Octal | 274 | 314 | 316 |
Examples of css and html codes for elements with #BCCCCE color. Also use rgb(188,204,206) instead hex code.
.myTextColor { color: #BCCCCE; }
<p style="color:#BCCCCE">This sample text font color is #BCCCCE.</p>
This text font color is #BCCCCE.
.myBgColor { background-color: #BCCCCE; }
<div style="background-color:#BCCCCE">Inner text</div>
This div background color is #BCCCCE.
.myBorderColor { border: 1px solid #BCCCCE; }
<div style="border:3px solid #BCCCCE">Div</div>
This div border color is #BCCCCE.
.myOpacity80 { color: #BCCCCE; opacity: 0.8; }
<p style="color:#BCCCCE;opacity:0.8;">80%</p>
Text with #BCCCCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCCCCE;}
<p style="text-shadow: 3px 3px 1px #BCCCCE">Text here.</p>
This text has shadow with #BCCCCE color.
.textShadow {text-shadow: 3px 3px 1px #BCCCCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCCCCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCCCCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCCCCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCCCCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCCCCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCCCCE; -webkit-box-shadow: 1px 1px 3px 2px #BCCCCE; box-shadow: 1px 1px 3px 2px #BCCCCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCCCCE; -webkit-box-shadow: 1px 1px 3px 2px #BCCCCE; box-shadow:1px 1px 3px 2px #BCCCCE;">
Div content here</div>
This text has color #BCCCCE on black background.
This text has color #BCCCCE on white background.
This text has black color on #BCCCCE background.
This text has white color on #BCCCCE background.