HEX: #BDC3DE
RGB: (189,195,222)
#BDC3DE contains red, green and blue colors in about the same proportion. Web safe color of #BDC3DE is #CCCCCC (or #CCC).
#BDC3DE color RGB value is (189,195,222).
RGB: (189,195,222) (74%,76%,87%)
R 189 of 255 = 74%
G 195 of 255 = 76%
B 222 of 255 = 87%
R + G + B ~ 79%. #BDC3DE is quite light color.
R + G + B =
189 + 195 + 222 = 606 (100%)
R 189 of 606 ~ 31.19%
G 195 of 606 ~ 32.18%
B 222 of 606 ~ 36.63%
#BDC3DE color CMYK value is (15,12,0,13).
CMYK: (15,12,0,13) C15M12Y0K13 (15%,12%,0%,13%) (0.15/0.12/0.00/0.13)
BD | C3 | DE | |
---|---|---|---|
RGB | 189 | 195 | 222 |
HSL | 229° | 33.33% | 80.59% |
HSB/HSV | 229° | 14.86% | 87.06% |
CMYK | 14.86% | 12.16% | 0.00% |
12.94% |
HEX | BD | C3 | DE |
Decimal | 189 | 195 | 222 |
Binary | 10111101 | 11000011 | 11011110 |
Octal | 275 | 303 | 336 |
Examples of css and html codes for elements with #BDC3DE color. Also use rgb(189,195,222) instead hex code.
.myTextColor { color: #BDC3DE; }
<p style="color:#BDC3DE">This sample text font color is #BDC3DE.</p>
This text font color is #BDC3DE.
.myBgColor { background-color: #BDC3DE; }
<div style="background-color:#BDC3DE">Inner text</div>
This div background color is #BDC3DE.
.myBorderColor { border: 1px solid #BDC3DE; }
<div style="border:3px solid #BDC3DE">Div</div>
This div border color is #BDC3DE.
.myOpacity80 { color: #BDC3DE; opacity: 0.8; }
<p style="color:#BDC3DE;opacity:0.8;">80%</p>
Text with #BDC3DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDC3DE;}
<p style="text-shadow: 3px 3px 1px #BDC3DE">Text here.</p>
This text has shadow with #BDC3DE color.
.textShadow {text-shadow: 3px 3px 1px #BDC3DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDC3DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDC3DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDC3DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDC3DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDC3DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDC3DE; -webkit-box-shadow: 1px 1px 3px 2px #BDC3DE; box-shadow: 1px 1px 3px 2px #BDC3DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDC3DE; -webkit-box-shadow: 1px 1px 3px 2px #BDC3DE; box-shadow:1px 1px 3px 2px #BDC3DE;">
Div content here</div>
This text has color #BDC3DE on black background.
This text has color #BDC3DE on white background.
This text has black color on #BDC3DE background.
This text has white color on #BDC3DE background.