HEX: #BCC9BA
RGB: (188,201,186)
#BCC9BA contains red, green and blue colors in about the same proportion. Web safe color of #BCC9BA is #CCCCCC (or #CCC).
#BCC9BA color RGB value is (188,201,186).
RGB: (188,201,186) (74%,79%,73%)
R 188 of 255 = 74%
G 201 of 255 = 79%
B 186 of 255 = 73%
R + G + B ~ 75%. #BCC9BA is quite light color.
R + G + B =
188 + 201 + 186 = 575 (100%)
R 188 of 575 ~ 32.7%
G 201 of 575 ~ 34.96%
B 186 of 575 ~ 32.35%
#BCC9BA color CMYK value is (6,0,7,21).
CMYK: (6,0,7,21) C6M0Y7K21 (6%,0%,7%,21%) (0.06/0.00/0.07/0.21)
BC | C9 | BA | |
---|---|---|---|
RGB | 188 | 201 | 186 |
HSL | 112° | 12.20% | 75.88% |
HSB/HSV | 112° | 7.46% | 78.82% |
CMYK | 6.47% | 0.00% | 7.46% |
21.18% |
HEX | BC | C9 | BA |
Decimal | 188 | 201 | 186 |
Binary | 10111100 | 11001001 | 10111010 |
Octal | 274 | 311 | 272 |
Examples of css and html codes for elements with #BCC9BA color. Also use rgb(188,201,186) instead hex code.
.myTextColor { color: #BCC9BA; }
<p style="color:#BCC9BA">This sample text font color is #BCC9BA.</p>
This text font color is #BCC9BA.
.myBgColor { background-color: #BCC9BA; }
<div style="background-color:#BCC9BA">Inner text</div>
This div background color is #BCC9BA.
.myBorderColor { border: 1px solid #BCC9BA; }
<div style="border:3px solid #BCC9BA">Div</div>
This div border color is #BCC9BA.
.myOpacity80 { color: #BCC9BA; opacity: 0.8; }
<p style="color:#BCC9BA;opacity:0.8;">80%</p>
Text with #BCC9BA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC9BA;}
<p style="text-shadow: 3px 3px 1px #BCC9BA">Text here.</p>
This text has shadow with #BCC9BA color.
.textShadow {text-shadow: 3px 3px 1px #BCC9BA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC9BA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC9BA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC9BA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC9BA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC9BA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC9BA; -webkit-box-shadow: 1px 1px 3px 2px #BCC9BA; box-shadow: 1px 1px 3px 2px #BCC9BA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC9BA; -webkit-box-shadow: 1px 1px 3px 2px #BCC9BA; box-shadow:1px 1px 3px 2px #BCC9BA;">
Div content here</div>
This text has color #BCC9BA on black background.
This text has color #BCC9BA on white background.
This text has black color on #BCC9BA background.
This text has white color on #BCC9BA background.