HEX: #BDD6EA
RGB: (189,214,234)
#BDD6EA contains red, green and blue colors in about the same proportion. Web safe color of #BDD6EA is #CCCCFF (or #CCF).
#BDD6EA color RGB value is (189,214,234).
RGB: (189,214,234) (74%,84%,92%)
R 189 of 255 = 74%
G 214 of 255 = 84%
B 234 of 255 = 92%
R + G + B ~ 83%. #BDD6EA is quite light color.
R + G + B =
189 + 214 + 234 = 637 (100%)
R 189 of 637 ~ 29.67%
G 214 of 637 ~ 33.59%
B 234 of 637 ~ 36.73%
#BDD6EA color CMYK value is (19,9,0,8).
CMYK: (19,9,0,8) C19M9Y0K8 (19%,9%,0%,8%) (0.19/0.09/0.00/0.08)
BD | D6 | EA | |
---|---|---|---|
RGB | 189 | 214 | 234 |
HSL | 207° | 51.72% | 82.94% |
HSB/HSV | 207° | 19.23% | 91.76% |
CMYK | 19.23% | 8.55% | 0.00% |
8.24% |
HEX | BD | D6 | EA |
Decimal | 189 | 214 | 234 |
Binary | 10111101 | 11010110 | 11101010 |
Octal | 275 | 326 | 352 |
Examples of css and html codes for elements with #BDD6EA color. Also use rgb(189,214,234) instead hex code.
.myTextColor { color: #BDD6EA; }
<p style="color:#BDD6EA">This sample text font color is #BDD6EA.</p>
This text font color is #BDD6EA.
.myBgColor { background-color: #BDD6EA; }
<div style="background-color:#BDD6EA">Inner text</div>
This div background color is #BDD6EA.
.myBorderColor { border: 1px solid #BDD6EA; }
<div style="border:3px solid #BDD6EA">Div</div>
This div border color is #BDD6EA.
.myOpacity80 { color: #BDD6EA; opacity: 0.8; }
<p style="color:#BDD6EA;opacity:0.8;">80%</p>
Text with #BDD6EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDD6EA;}
<p style="text-shadow: 3px 3px 1px #BDD6EA">Text here.</p>
This text has shadow with #BDD6EA color.
.textShadow {text-shadow: 3px 3px 1px #BDD6EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDD6EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDD6EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDD6EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDD6EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDD6EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDD6EA; -webkit-box-shadow: 1px 1px 3px 2px #BDD6EA; box-shadow: 1px 1px 3px 2px #BDD6EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDD6EA; -webkit-box-shadow: 1px 1px 3px 2px #BDD6EA; box-shadow:1px 1px 3px 2px #BDD6EA;">
Div content here</div>
This text has color #BDD6EA on black background.
This text has color #BDD6EA on white background.
This text has black color on #BDD6EA background.
This text has white color on #BDD6EA background.