HEX: #BBD7FA
RGB: (187,215,250)
#BBD7FA contains mainly green and blue colors. Web safe color of #BBD7FA is #CCCCFF (or #CCF).
#BBD7FA color RGB value is (187,215,250).
RGB: (187,215,250) (73%,84%,98%)
R 187 of 255 = 73%
G 215 of 255 = 84%
B 250 of 255 = 98%
R + G + B ~ 85%. #BBD7FA is quite light color.
R + G + B =
187 + 215 + 250 = 652 (100%)
R 187 of 652 ~ 28.68%
G 215 of 652 ~ 32.98%
B 250 of 652 ~ 38.34%
#BBD7FA color CMYK value is (25,14,0,2).
CMYK: (25,14,0,2) C25M14Y0K2 (25%,14%,0%,2%) (0.25/0.14/0.00/0.02)
BB | D7 | FA | |
---|---|---|---|
RGB | 187 | 215 | 250 |
HSL | 213° | 86.30% | 85.69% |
HSB/HSV | 213° | 25.20% | 98.04% |
CMYK | 25.20% | 14.00% | 0.00% |
1.96% |
HEX | BB | D7 | FA |
Decimal | 187 | 215 | 250 |
Binary | 10111011 | 11010111 | 11111010 |
Octal | 273 | 327 | 372 |
Examples of css and html codes for elements with #BBD7FA color. Also use rgb(187,215,250) instead hex code.
.myTextColor { color: #BBD7FA; }
<p style="color:#BBD7FA">This sample text font color is #BBD7FA.</p>
This text font color is #BBD7FA.
.myBgColor { background-color: #BBD7FA; }
<div style="background-color:#BBD7FA">Inner text</div>
This div background color is #BBD7FA.
.myBorderColor { border: 1px solid #BBD7FA; }
<div style="border:3px solid #BBD7FA">Div</div>
This div border color is #BBD7FA.
.myOpacity80 { color: #BBD7FA; opacity: 0.8; }
<p style="color:#BBD7FA;opacity:0.8;">80%</p>
Text with #BBD7FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBD7FA;}
<p style="text-shadow: 3px 3px 1px #BBD7FA">Text here.</p>
This text has shadow with #BBD7FA color.
.textShadow {text-shadow: 3px 3px 1px #BBD7FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBD7FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBD7FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBD7FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBD7FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBD7FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBD7FA; -webkit-box-shadow: 1px 1px 3px 2px #BBD7FA; box-shadow: 1px 1px 3px 2px #BBD7FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBD7FA; -webkit-box-shadow: 1px 1px 3px 2px #BBD7FA; box-shadow:1px 1px 3px 2px #BBD7FA;">
Div content here</div>
This text has color #BBD7FA on black background.
This text has color #BBD7FA on white background.
This text has black color on #BBD7FA background.
This text has white color on #BBD7FA background.