HEX: #BCEEE9
RGB: (188,238,233)
#BCEEE9 contains red, green and blue colors in about the same proportion. Web safe color of #BCEEE9 is #CCFFFF (or #CFF).
#BCEEE9 color RGB value is (188,238,233).
RGB: (188,238,233) (74%,93%,91%)
R 188 of 255 = 74%
G 238 of 255 = 93%
B 233 of 255 = 91%
R + G + B ~ 86%. #BCEEE9 is light color.
R + G + B =
188 + 238 + 233 = 659 (100%)
R 188 of 659 ~ 28.53%
G 238 of 659 ~ 36.12%
B 233 of 659 ~ 35.36%
#BCEEE9 color CMYK value is (21,0,2,7).
CMYK: (21,0,2,7) C21M0Y2K7 (21%,0%,2%,7%) (0.21/0.00/0.02/0.07)
BC | EE | E9 | |
---|---|---|---|
RGB | 188 | 238 | 233 |
HSL | 174° | 59.52% | 83.53% |
HSB/HSV | 174° | 21.01% | 93.33% |
CMYK | 21.01% | 0.00% | 2.10% |
6.67% |
HEX | BC | EE | E9 |
Decimal | 188 | 238 | 233 |
Binary | 10111100 | 11101110 | 11101001 |
Octal | 274 | 356 | 351 |
Examples of css and html codes for elements with #BCEEE9 color. Also use rgb(188,238,233) instead hex code.
.myTextColor { color: #BCEEE9; }
<p style="color:#BCEEE9">This sample text font color is #BCEEE9.</p>
This text font color is #BCEEE9.
.myBgColor { background-color: #BCEEE9; }
<div style="background-color:#BCEEE9">Inner text</div>
This div background color is #BCEEE9.
.myBorderColor { border: 1px solid #BCEEE9; }
<div style="border:3px solid #BCEEE9">Div</div>
This div border color is #BCEEE9.
.myOpacity80 { color: #BCEEE9; opacity: 0.8; }
<p style="color:#BCEEE9;opacity:0.8;">80%</p>
Text with #BCEEE9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCEEE9;}
<p style="text-shadow: 3px 3px 1px #BCEEE9">Text here.</p>
This text has shadow with #BCEEE9 color.
.textShadow {text-shadow: 3px 3px 1px #BCEEE9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCEEE9, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCEEE9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCEEE9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCEEE9, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCEEE9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCEEE9; -webkit-box-shadow: 1px 1px 3px 2px #BCEEE9; box-shadow: 1px 1px 3px 2px #BCEEE9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCEEE9; -webkit-box-shadow: 1px 1px 3px 2px #BCEEE9; box-shadow:1px 1px 3px 2px #BCEEE9;">
Div content here</div>
This text has color #BCEEE9 on black background.
This text has color #BCEEE9 on white background.
This text has black color on #BCEEE9 background.
This text has white color on #BCEEE9 background.