HEX: #BBEEFA
RGB: (187,238,250)
#BBEEFA contains mainly green and blue colors. Web safe color of #BBEEFA is #CCFFFF (or #CFF).
#BBEEFA color RGB value is (187,238,250).
RGB: (187,238,250) (73%,93%,98%)
R 187 of 255 = 73%
G 238 of 255 = 93%
B 250 of 255 = 98%
R + G + B ~ 88%. #BBEEFA is light color.
R + G + B =
187 + 238 + 250 = 675 (100%)
R 187 of 675 ~ 27.7%
G 238 of 675 ~ 35.26%
B 250 of 675 ~ 37.04%
#BBEEFA color CMYK value is (25,5,0,2).
CMYK: (25,5,0,2) C25M5Y0K2 (25%,5%,0%,2%) (0.25/0.05/0.00/0.02)
BB | EE | FA | |
---|---|---|---|
RGB | 187 | 238 | 250 |
HSL | 191° | 86.30% | 85.69% |
HSB/HSV | 191° | 25.20% | 98.04% |
CMYK | 25.20% | 4.80% | 0.00% |
1.96% |
HEX | BB | EE | FA |
Decimal | 187 | 238 | 250 |
Binary | 10111011 | 11101110 | 11111010 |
Octal | 273 | 356 | 372 |
Examples of css and html codes for elements with #BBEEFA color. Also use rgb(187,238,250) instead hex code.
.myTextColor { color: #BBEEFA; }
<p style="color:#BBEEFA">This sample text font color is #BBEEFA.</p>
This text font color is #BBEEFA.
.myBgColor { background-color: #BBEEFA; }
<div style="background-color:#BBEEFA">Inner text</div>
This div background color is #BBEEFA.
.myBorderColor { border: 1px solid #BBEEFA; }
<div style="border:3px solid #BBEEFA">Div</div>
This div border color is #BBEEFA.
.myOpacity80 { color: #BBEEFA; opacity: 0.8; }
<p style="color:#BBEEFA;opacity:0.8;">80%</p>
Text with #BBEEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBEEFA;}
<p style="text-shadow: 3px 3px 1px #BBEEFA">Text here.</p>
This text has shadow with #BBEEFA color.
.textShadow {text-shadow: 3px 3px 1px #BBEEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBEEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBEEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBEEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBEEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBEEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBEEFA; -webkit-box-shadow: 1px 1px 3px 2px #BBEEFA; box-shadow: 1px 1px 3px 2px #BBEEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBEEFA; -webkit-box-shadow: 1px 1px 3px 2px #BBEEFA; box-shadow:1px 1px 3px 2px #BBEEFA;">
Div content here</div>
This text has color #BBEEFA on black background.
This text has color #BBEEFA on white background.
This text has black color on #BBEEFA background.
This text has white color on #BBEEFA background.