HEX: #B9D4EA
RGB: (185,212,234)
#B9D4EA contains red, green and blue colors in about the same proportion. Web safe color of #B9D4EA is #CCCCFF (or #CCF).
#B9D4EA color RGB value is (185,212,234).
RGB: (185,212,234) (73%,83%,92%)
R 185 of 255 = 73%
G 212 of 255 = 83%
B 234 of 255 = 92%
R + G + B ~ 83%. #B9D4EA is quite light color.
R + G + B =
185 + 212 + 234 = 631 (100%)
R 185 of 631 ~ 29.32%
G 212 of 631 ~ 33.6%
B 234 of 631 ~ 37.08%
#B9D4EA color CMYK value is (21,9,0,8).
CMYK: (21,9,0,8) C21M9Y0K8 (21%,9%,0%,8%) (0.21/0.09/0.00/0.08)
B9 | D4 | EA | |
---|---|---|---|
RGB | 185 | 212 | 234 |
HSL | 207° | 53.85% | 82.16% |
HSB/HSV | 207° | 20.94% | 91.76% |
CMYK | 20.94% | 9.40% | 0.00% |
8.24% |
HEX | B9 | D4 | EA |
Decimal | 185 | 212 | 234 |
Binary | 10111001 | 11010100 | 11101010 |
Octal | 271 | 324 | 352 |
Examples of css and html codes for elements with #B9D4EA color. Also use rgb(185,212,234) instead hex code.
.myTextColor { color: #B9D4EA; }
<p style="color:#B9D4EA">This sample text font color is #B9D4EA.</p>
This text font color is #B9D4EA.
.myBgColor { background-color: #B9D4EA; }
<div style="background-color:#B9D4EA">Inner text</div>
This div background color is #B9D4EA.
.myBorderColor { border: 1px solid #B9D4EA; }
<div style="border:3px solid #B9D4EA">Div</div>
This div border color is #B9D4EA.
.myOpacity80 { color: #B9D4EA; opacity: 0.8; }
<p style="color:#B9D4EA;opacity:0.8;">80%</p>
Text with #B9D4EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9D4EA;}
<p style="text-shadow: 3px 3px 1px #B9D4EA">Text here.</p>
This text has shadow with #B9D4EA color.
.textShadow {text-shadow: 3px 3px 1px #B9D4EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9D4EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9D4EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9D4EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9D4EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9D4EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9D4EA; -webkit-box-shadow: 1px 1px 3px 2px #B9D4EA; box-shadow: 1px 1px 3px 2px #B9D4EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9D4EA; -webkit-box-shadow: 1px 1px 3px 2px #B9D4EA; box-shadow:1px 1px 3px 2px #B9D4EA;">
Div content here</div>
This text has color #B9D4EA on black background.
This text has color #B9D4EA on white background.
This text has black color on #B9D4EA background.
This text has white color on #B9D4EA background.