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