HEX: #BCD0CA
RGB: (188,208,202)
#BCD0CA contains red, green and blue colors in about the same proportion. Web safe color of #BCD0CA is #CCCCCC (or #CCC).
#BCD0CA color RGB value is (188,208,202).
RGB: (188,208,202) (74%,82%,79%)
R 188 of 255 = 74%
G 208 of 255 = 82%
B 202 of 255 = 79%
R + G + B ~ 78%. #BCD0CA is quite light color.
R + G + B =
188 + 208 + 202 = 598 (100%)
R 188 of 598 ~ 31.44%
G 208 of 598 ~ 34.78%
B 202 of 598 ~ 33.78%
#BCD0CA color CMYK value is (10,0,3,18).
CMYK: (10,0,3,18) C10M0Y3K18 (10%,0%,3%,18%) (0.10/0.00/0.03/0.18)
BC | D0 | CA | |
---|---|---|---|
RGB | 188 | 208 | 202 |
HSL | 162° | 17.54% | 77.65% |
HSB/HSV | 162° | 9.62% | 81.57% |
CMYK | 9.62% | 0.00% | 2.88% |
18.43% |
HEX | BC | D0 | CA |
Decimal | 188 | 208 | 202 |
Binary | 10111100 | 11010000 | 11001010 |
Octal | 274 | 320 | 312 |
Examples of css and html codes for elements with #BCD0CA color. Also use rgb(188,208,202) instead hex code.
.myTextColor { color: #BCD0CA; }
<p style="color:#BCD0CA">This sample text font color is #BCD0CA.</p>
This text font color is #BCD0CA.
.myBgColor { background-color: #BCD0CA; }
<div style="background-color:#BCD0CA">Inner text</div>
This div background color is #BCD0CA.
.myBorderColor { border: 1px solid #BCD0CA; }
<div style="border:3px solid #BCD0CA">Div</div>
This div border color is #BCD0CA.
.myOpacity80 { color: #BCD0CA; opacity: 0.8; }
<p style="color:#BCD0CA;opacity:0.8;">80%</p>
Text with #BCD0CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCD0CA;}
<p style="text-shadow: 3px 3px 1px #BCD0CA">Text here.</p>
This text has shadow with #BCD0CA color.
.textShadow {text-shadow: 3px 3px 1px #BCD0CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCD0CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCD0CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCD0CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCD0CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCD0CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCD0CA; -webkit-box-shadow: 1px 1px 3px 2px #BCD0CA; box-shadow: 1px 1px 3px 2px #BCD0CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCD0CA; -webkit-box-shadow: 1px 1px 3px 2px #BCD0CA; box-shadow:1px 1px 3px 2px #BCD0CA;">
Div content here</div>
This text has color #BCD0CA on black background.
This text has color #BCD0CA on white background.
This text has black color on #BCD0CA background.
This text has white color on #BCD0CA background.