HEX: #BCE0BC
RGB: (188,224,188)
#BCE0BC contains red, green and blue colors in about the same proportion. Web safe color of #BCE0BC is #CCCCCC (or #CCC).
#BCE0BC color RGB value is (188,224,188).
RGB: (188,224,188) (74%,88%,74%)
R 188 of 255 = 74%
G 224 of 255 = 88%
B 188 of 255 = 74%
R + G + B ~ 79%. #BCE0BC is quite light color.
R + G + B =
188 + 224 + 188 = 600 (100%)
R 188 of 600 ~ 31.33%
G 224 of 600 ~ 37.33%
B 188 of 600 ~ 31.33%
#BCE0BC color CMYK value is (16,0,16,12).
CMYK: (16,0,16,12) C16M0Y16K12 (16%,0%,16%,12%) (0.16/0.00/0.16/0.12)
BC | E0 | BC | |
---|---|---|---|
RGB | 188 | 224 | 188 |
HSL | 120° | 36.73% | 80.78% |
HSB/HSV | 120° | 16.07% | 87.84% |
CMYK | 16.07% | 0.00% | 16.07% |
12.16% |
HEX | BC | E0 | BC |
Decimal | 188 | 224 | 188 |
Binary | 10111100 | 11100000 | 10111100 |
Octal | 274 | 340 | 274 |
Examples of css and html codes for elements with #BCE0BC color. Also use rgb(188,224,188) instead hex code.
.myTextColor { color: #BCE0BC; }
<p style="color:#BCE0BC">This sample text font color is #BCE0BC.</p>
This text font color is #BCE0BC.
.myBgColor { background-color: #BCE0BC; }
<div style="background-color:#BCE0BC">Inner text</div>
This div background color is #BCE0BC.
.myBorderColor { border: 1px solid #BCE0BC; }
<div style="border:3px solid #BCE0BC">Div</div>
This div border color is #BCE0BC.
.myOpacity80 { color: #BCE0BC; opacity: 0.8; }
<p style="color:#BCE0BC;opacity:0.8;">80%</p>
Text with #BCE0BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCE0BC;}
<p style="text-shadow: 3px 3px 1px #BCE0BC">Text here.</p>
This text has shadow with #BCE0BC color.
.textShadow {text-shadow: 3px 3px 1px #BCE0BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCE0BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCE0BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCE0BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCE0BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCE0BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCE0BC; -webkit-box-shadow: 1px 1px 3px 2px #BCE0BC; box-shadow: 1px 1px 3px 2px #BCE0BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCE0BC; -webkit-box-shadow: 1px 1px 3px 2px #BCE0BC; box-shadow:1px 1px 3px 2px #BCE0BC;">
Div content here</div>
This text has color #BCE0BC on black background.
This text has color #BCE0BC on white background.
This text has black color on #BCE0BC background.
This text has white color on #BCE0BC background.