HEX: #BCE9DD
RGB: (188,233,221)
#BCE9DD contains red, green and blue colors in about the same proportion. Web safe color of #BCE9DD is #CCFFCC (or #CFC).
#BCE9DD color RGB value is (188,233,221).
RGB: (188,233,221) (74%,91%,87%)
R 188 of 255 = 74%
G 233 of 255 = 91%
B 221 of 255 = 87%
R + G + B ~ 84%. #BCE9DD is quite light color.
R + G + B =
188 + 233 + 221 = 642 (100%)
R 188 of 642 ~ 29.28%
G 233 of 642 ~ 36.29%
B 221 of 642 ~ 34.42%
#BCE9DD color CMYK value is (19,0,5,9).
CMYK: (19,0,5,9) C19M0Y5K9 (19%,0%,5%,9%) (0.19/0.00/0.05/0.09)
BC | E9 | DD | |
---|---|---|---|
RGB | 188 | 233 | 221 |
HSL | 164° | 50.56% | 82.55% |
HSB/HSV | 164° | 19.31% | 91.37% |
CMYK | 19.31% | 0.00% | 5.15% |
8.63% |
HEX | BC | E9 | DD |
Decimal | 188 | 233 | 221 |
Binary | 10111100 | 11101001 | 11011101 |
Octal | 274 | 351 | 335 |
Examples of css and html codes for elements with #BCE9DD color. Also use rgb(188,233,221) instead hex code.
.myTextColor { color: #BCE9DD; }
<p style="color:#BCE9DD">This sample text font color is #BCE9DD.</p>
This text font color is #BCE9DD.
.myBgColor { background-color: #BCE9DD; }
<div style="background-color:#BCE9DD">Inner text</div>
This div background color is #BCE9DD.
.myBorderColor { border: 1px solid #BCE9DD; }
<div style="border:3px solid #BCE9DD">Div</div>
This div border color is #BCE9DD.
.myOpacity80 { color: #BCE9DD; opacity: 0.8; }
<p style="color:#BCE9DD;opacity:0.8;">80%</p>
Text with #BCE9DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCE9DD;}
<p style="text-shadow: 3px 3px 1px #BCE9DD">Text here.</p>
This text has shadow with #BCE9DD color.
.textShadow {text-shadow: 3px 3px 1px #BCE9DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCE9DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCE9DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCE9DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCE9DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCE9DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCE9DD; -webkit-box-shadow: 1px 1px 3px 2px #BCE9DD; box-shadow: 1px 1px 3px 2px #BCE9DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCE9DD; -webkit-box-shadow: 1px 1px 3px 2px #BCE9DD; box-shadow:1px 1px 3px 2px #BCE9DD;">
Div content here</div>
This text has color #BCE9DD on black background.
This text has color #BCE9DD on white background.
This text has black color on #BCE9DD background.
This text has white color on #BCE9DD background.