HEX: #BBDCED
RGB: (187,220,237)
#BBDCED contains red, green and blue colors in about the same proportion. Web safe color of #BBDCED is #CCCCFF (or #CCF).
#BBDCED color RGB value is (187,220,237).
RGB: (187,220,237) (73%,86%,93%)
R 187 of 255 = 73%
G 220 of 255 = 86%
B 237 of 255 = 93%
R + G + B ~ 84%. #BBDCED is quite light color.
R + G + B =
187 + 220 + 237 = 644 (100%)
R 187 of 644 ~ 29.04%
G 220 of 644 ~ 34.16%
B 237 of 644 ~ 36.8%
#BBDCED 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 | DC | ED | |
---|---|---|---|
RGB | 187 | 220 | 237 |
HSL | 200° | 58.14% | 83.14% |
HSB/HSV | 200° | 21.10% | 92.94% |
CMYK | 21.10% | 7.17% | 0.00% |
7.06% |
HEX | BB | DC | ED |
Decimal | 187 | 220 | 237 |
Binary | 10111011 | 11011100 | 11101101 |
Octal | 273 | 334 | 355 |
Examples of css and html codes for elements with #BBDCED color. Also use rgb(187,220,237) instead hex code.
.myTextColor { color: #BBDCED; }
<p style="color:#BBDCED">This sample text font color is #BBDCED.</p>
This text font color is #BBDCED.
.myBgColor { background-color: #BBDCED; }
<div style="background-color:#BBDCED">Inner text</div>
This div background color is #BBDCED.
.myBorderColor { border: 1px solid #BBDCED; }
<div style="border:3px solid #BBDCED">Div</div>
This div border color is #BBDCED.
.myOpacity80 { color: #BBDCED; opacity: 0.8; }
<p style="color:#BBDCED;opacity:0.8;">80%</p>
Text with #BBDCED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBDCED;}
<p style="text-shadow: 3px 3px 1px #BBDCED">Text here.</p>
This text has shadow with #BBDCED color.
.textShadow {text-shadow: 3px 3px 1px #BBDCED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBDCED, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBDCED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBDCED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBDCED, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBDCED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBDCED; -webkit-box-shadow: 1px 1px 3px 2px #BBDCED; box-shadow: 1px 1px 3px 2px #BBDCED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBDCED; -webkit-box-shadow: 1px 1px 3px 2px #BBDCED; box-shadow:1px 1px 3px 2px #BBDCED;">
Div content here</div>
This text has color #BBDCED on black background.
This text has color #BBDCED on white background.
This text has black color on #BBDCED background.
This text has white color on #BBDCED background.