HEX: #BCC7CC
RGB: (188,199,204)
#BCC7CC contains red, green and blue colors in about the same proportion. Web safe color of #BCC7CC is #CCCCCC (or #CCC).
#BCC7CC color RGB value is (188,199,204).
RGB: (188,199,204) (74%,78%,80%)
R 188 of 255 = 74%
G 199 of 255 = 78%
B 204 of 255 = 80%
R + G + B ~ 77%. #BCC7CC is quite light color.
R + G + B =
188 + 199 + 204 = 591 (100%)
R 188 of 591 ~ 31.81%
G 199 of 591 ~ 33.67%
B 204 of 591 ~ 34.52%
#BCC7CC color CMYK value is (8,2,0,20).
CMYK: (8,2,0,20) C8M2Y0K20 (8%,2%,0%,20%) (0.08/0.02/0.00/0.20)
BC | C7 | CC | |
---|---|---|---|
RGB | 188 | 199 | 204 |
HSL | 199° | 13.56% | 76.86% |
HSB/HSV | 199° | 7.84% | 80.00% |
CMYK | 7.84% | 2.45% | 0.00% |
20.00% |
HEX | BC | C7 | CC |
Decimal | 188 | 199 | 204 |
Binary | 10111100 | 11000111 | 11001100 |
Octal | 274 | 307 | 314 |
Examples of css and html codes for elements with #BCC7CC color. Also use rgb(188,199,204) instead hex code.
.myTextColor { color: #BCC7CC; }
<p style="color:#BCC7CC">This sample text font color is #BCC7CC.</p>
This text font color is #BCC7CC.
.myBgColor { background-color: #BCC7CC; }
<div style="background-color:#BCC7CC">Inner text</div>
This div background color is #BCC7CC.
.myBorderColor { border: 1px solid #BCC7CC; }
<div style="border:3px solid #BCC7CC">Div</div>
This div border color is #BCC7CC.
.myOpacity80 { color: #BCC7CC; opacity: 0.8; }
<p style="color:#BCC7CC;opacity:0.8;">80%</p>
Text with #BCC7CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC7CC;}
<p style="text-shadow: 3px 3px 1px #BCC7CC">Text here.</p>
This text has shadow with #BCC7CC color.
.textShadow {text-shadow: 3px 3px 1px #BCC7CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC7CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC7CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC7CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC7CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC7CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC7CC; -webkit-box-shadow: 1px 1px 3px 2px #BCC7CC; box-shadow: 1px 1px 3px 2px #BCC7CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC7CC; -webkit-box-shadow: 1px 1px 3px 2px #BCC7CC; box-shadow:1px 1px 3px 2px #BCC7CC;">
Div content here</div>
This text has color #BCC7CC on black background.
This text has color #BCC7CC on white background.
This text has black color on #BCC7CC background.
This text has white color on #BCC7CC background.