HEX: #BCC5CA
RGB: (188,197,202)
#BCC5CA contains red, green and blue colors in about the same proportion. Web safe color of #BCC5CA is #CCCCCC (or #CCC).
#BCC5CA color RGB value is (188,197,202).
RGB: (188,197,202) (74%,77%,79%)
R 188 of 255 = 74%
G 197 of 255 = 77%
B 202 of 255 = 79%
R + G + B ~ 77%. #BCC5CA is quite light color.
R + G + B =
188 + 197 + 202 = 587 (100%)
R 188 of 587 ~ 32.03%
G 197 of 587 ~ 33.56%
B 202 of 587 ~ 34.41%
#BCC5CA color CMYK value is (7,2,0,21).
CMYK: (7,2,0,21) C7M2Y0K21 (7%,2%,0%,21%) (0.07/0.02/0.00/0.21)
BC | C5 | CA | |
---|---|---|---|
RGB | 188 | 197 | 202 |
HSL | 201° | 11.67% | 76.47% |
HSB/HSV | 201° | 6.93% | 79.22% |
CMYK | 6.93% | 2.48% | 0.00% |
20.78% |
HEX | BC | C5 | CA |
Decimal | 188 | 197 | 202 |
Binary | 10111100 | 11000101 | 11001010 |
Octal | 274 | 305 | 312 |
Examples of css and html codes for elements with #BCC5CA color. Also use rgb(188,197,202) instead hex code.
.myTextColor { color: #BCC5CA; }
<p style="color:#BCC5CA">This sample text font color is #BCC5CA.</p>
This text font color is #BCC5CA.
.myBgColor { background-color: #BCC5CA; }
<div style="background-color:#BCC5CA">Inner text</div>
This div background color is #BCC5CA.
.myBorderColor { border: 1px solid #BCC5CA; }
<div style="border:3px solid #BCC5CA">Div</div>
This div border color is #BCC5CA.
.myOpacity80 { color: #BCC5CA; opacity: 0.8; }
<p style="color:#BCC5CA;opacity:0.8;">80%</p>
Text with #BCC5CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCC5CA;}
<p style="text-shadow: 3px 3px 1px #BCC5CA">Text here.</p>
This text has shadow with #BCC5CA color.
.textShadow {text-shadow: 3px 3px 1px #BCC5CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCC5CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCC5CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCC5CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCC5CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCC5CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCC5CA; -webkit-box-shadow: 1px 1px 3px 2px #BCC5CA; box-shadow: 1px 1px 3px 2px #BCC5CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCC5CA; -webkit-box-shadow: 1px 1px 3px 2px #BCC5CA; box-shadow:1px 1px 3px 2px #BCC5CA;">
Div content here</div>
This text has color #BCC5CA on black background.
This text has color #BCC5CA on white background.
This text has black color on #BCC5CA background.
This text has white color on #BCC5CA background.