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