HEX: #BCC5C6
RGB: (188,197,198)
#BCC5C6 contains red, green and blue colors in about the same proportion. Web safe color of #BCC5C6 is #CCCCCC (or #CCC).
#BCC5C6 color RGB value is (188,197,198).
RGB: (188,197,198) (74%,77%,78%)
R 188 of 255 = 74%
G 197 of 255 = 77%
B 198 of 255 = 78%
R + G + B ~ 76%. #BCC5C6 is quite light color.
R + G + B =
188 + 197 + 198 = 583 (100%)
R 188 of 583 ~ 32.25%
G 197 of 583 ~ 33.79%
B 198 of 583 ~ 33.96%
#BCC5C6 color CMYK value is (5,1,0,22).
CMYK: (5,1,0,22) C5M1Y0K22 (5%,1%,0%,22%) (0.05/0.01/0.00/0.22)
BC | C5 | C6 | |
---|---|---|---|
RGB | 188 | 197 | 198 |
HSL | 186° | 8.06% | 75.69% |
HSB/HSV | 186° | 5.05% | 77.65% |
CMYK | 5.05% | 0.51% | 0.00% |
22.35% |
HEX | BC | C5 | C6 |
Decimal | 188 | 197 | 198 |
Binary | 10111100 | 11000101 | 11000110 |
Octal | 274 | 305 | 306 |
Examples of css and html codes for elements with #BCC5C6 color. Also use rgb(188,197,198) instead hex code.
.myTextColor { color: #BCC5C6; }
<p style="color:#BCC5C6">This sample text font color is #BCC5C6.</p>
This text font color is #BCC5C6.
.myBgColor { background-color: #BCC5C6; }
<div style="background-color:#BCC5C6">Inner text</div>
This div background color is #BCC5C6.
.myBorderColor { border: 1px solid #BCC5C6; }
<div style="border:3px solid #BCC5C6">Div</div>
This div border color is #BCC5C6.
.myOpacity80 { color: #BCC5C6; opacity: 0.8; }
<p style="color:#BCC5C6;opacity:0.8;">80%</p>
Text with #BCC5C6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC5C6;}
<p style="text-shadow: 3px 3px 1px #BCC5C6">Text here.</p>
This text has shadow with #BCC5C6 color.
.textShadow {text-shadow: 3px 3px 1px #BCC5C6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC5C6, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC5C6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC5C6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC5C6, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC5C6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC5C6; -webkit-box-shadow: 1px 1px 3px 2px #BCC5C6; box-shadow: 1px 1px 3px 2px #BCC5C6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC5C6; -webkit-box-shadow: 1px 1px 3px 2px #BCC5C6; box-shadow:1px 1px 3px 2px #BCC5C6;">
Div content here</div>
This text has color #BCC5C6 on black background.
This text has color #BCC5C6 on white background.
This text has black color on #BCC5C6 background.
This text has white color on #BCC5C6 background.