HEX: #BBDDEE
RGB: (187,221,238)
#BBDDEE contains red, green and blue colors in about the same proportion. Web safe color of #BBDDEE is #CCCCFF (or #CCF).
#BBDDEE color RGB value is (187,221,238).
RGB: (187,221,238) (73%,87%,93%)
R 187 of 255 = 73%
G 221 of 255 = 87%
B 238 of 255 = 93%
R + G + B ~ 84%. #BBDDEE is quite light color.
R + G + B =
187 + 221 + 238 = 646 (100%)
R 187 of 646 ~ 28.95%
G 221 of 646 ~ 34.21%
B 238 of 646 ~ 36.84%
#BBDDEE color CMYK value is (21,7,0,7).
CMYK: (21,7,0,7) C21M7Y0K7 (21%,7%,0%,7%) (0.21/0.07/0.00/0.07)
BB | DD | EE | |
---|---|---|---|
RGB | 187 | 221 | 238 |
HSL | 200° | 60.00% | 83.33% |
HSB/HSV | 200° | 21.43% | 93.33% |
CMYK | 21.43% | 7.14% | 0.00% |
6.67% |
HEX | BB | DD | EE |
Decimal | 187 | 221 | 238 |
Binary | 10111011 | 11011101 | 11101110 |
Octal | 273 | 335 | 356 |
Examples of css and html codes for elements with #BBDDEE color. Also use rgb(187,221,238) instead hex code.
.myTextColor { color: #BBDDEE; }
<p style="color:#BBDDEE">This sample text font color is #BBDDEE.</p>
This text font color is #BBDDEE.
.myBgColor { background-color: #BBDDEE; }
<div style="background-color:#BBDDEE">Inner text</div>
This div background color is #BBDDEE.
.myBorderColor { border: 1px solid #BBDDEE; }
<div style="border:3px solid #BBDDEE">Div</div>
This div border color is #BBDDEE.
.myOpacity80 { color: #BBDDEE; opacity: 0.8; }
<p style="color:#BBDDEE;opacity:0.8;">80%</p>
Text with #BBDDEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBDDEE;}
<p style="text-shadow: 3px 3px 1px #BBDDEE">Text here.</p>
This text has shadow with #BBDDEE color.
.textShadow {text-shadow: 3px 3px 1px #BBDDEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBDDEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBDDEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBDDEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBDDEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBDDEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBDDEE; -webkit-box-shadow: 1px 1px 3px 2px #BBDDEE; box-shadow: 1px 1px 3px 2px #BBDDEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBDDEE; -webkit-box-shadow: 1px 1px 3px 2px #BBDDEE; box-shadow:1px 1px 3px 2px #BBDDEE;">
Div content here</div>
This text has color #BBDDEE on black background.
This text has color #BBDDEE on white background.
This text has black color on #BBDDEE background.
This text has white color on #BBDDEE background.