HEX: #BDD4EF
RGB: (189,212,239)
#BDD4EF contains red, green and blue colors in about the same proportion. Web safe color of #BDD4EF is #CCCCFF (or #CCF).
#BDD4EF color RGB value is (189,212,239).
RGB: (189,212,239) (74%,83%,94%)
R 189 of 255 = 74%
G 212 of 255 = 83%
B 239 of 255 = 94%
R + G + B ~ 84%. #BDD4EF is quite light color.
R + G + B =
189 + 212 + 239 = 640 (100%)
R 189 of 640 ~ 29.53%
G 212 of 640 ~ 33.13%
B 239 of 640 ~ 37.34%
#BDD4EF color CMYK value is (21,11,0,6).
CMYK: (21,11,0,6) C21M11Y0K6 (21%,11%,0%,6%) (0.21/0.11/0.00/0.06)
BD | D4 | EF | |
---|---|---|---|
RGB | 189 | 212 | 239 |
HSL | 212° | 60.98% | 83.92% |
HSB/HSV | 212° | 20.92% | 93.73% |
CMYK | 20.92% | 11.30% | 0.00% |
6.27% |
HEX | BD | D4 | EF |
Decimal | 189 | 212 | 239 |
Binary | 10111101 | 11010100 | 11101111 |
Octal | 275 | 324 | 357 |
Examples of css and html codes for elements with #BDD4EF color. Also use rgb(189,212,239) instead hex code.
.myTextColor { color: #BDD4EF; }
<p style="color:#BDD4EF">This sample text font color is #BDD4EF.</p>
This text font color is #BDD4EF.
.myBgColor { background-color: #BDD4EF; }
<div style="background-color:#BDD4EF">Inner text</div>
This div background color is #BDD4EF.
.myBorderColor { border: 1px solid #BDD4EF; }
<div style="border:3px solid #BDD4EF">Div</div>
This div border color is #BDD4EF.
.myOpacity80 { color: #BDD4EF; opacity: 0.8; }
<p style="color:#BDD4EF;opacity:0.8;">80%</p>
Text with #BDD4EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDD4EF;}
<p style="text-shadow: 3px 3px 1px #BDD4EF">Text here.</p>
This text has shadow with #BDD4EF color.
.textShadow {text-shadow: 3px 3px 1px #BDD4EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDD4EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDD4EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDD4EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDD4EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDD4EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDD4EF; -webkit-box-shadow: 1px 1px 3px 2px #BDD4EF; box-shadow: 1px 1px 3px 2px #BDD4EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDD4EF; -webkit-box-shadow: 1px 1px 3px 2px #BDD4EF; box-shadow:1px 1px 3px 2px #BDD4EF;">
Div content here</div>
This text has color #BDD4EF on black background.
This text has color #BDD4EF on white background.
This text has black color on #BDD4EF background.
This text has white color on #BDD4EF background.