HEX: #B9CAEB
RGB: (185,202,235)
#B9CAEB contains red, green and blue colors in about the same proportion. Web safe color of #B9CAEB is #CCCCFF (or #CCF).
#B9CAEB color RGB value is (185,202,235).
RGB: (185,202,235) (73%,79%,92%)
R 185 of 255 = 73%
G 202 of 255 = 79%
B 235 of 255 = 92%
R + G + B ~ 81%. #B9CAEB is quite light color.
R + G + B =
185 + 202 + 235 = 622 (100%)
R 185 of 622 ~ 29.74%
G 202 of 622 ~ 32.48%
B 235 of 622 ~ 37.78%
#B9CAEB color CMYK value is (21,14,0,8).
CMYK: (21,14,0,8) C21M14Y0K8 (21%,14%,0%,8%) (0.21/0.14/0.00/0.08)
B9 | CA | EB | |
---|---|---|---|
RGB | 185 | 202 | 235 |
HSL | 220° | 55.56% | 82.35% |
HSB/HSV | 220° | 21.28% | 92.16% |
CMYK | 21.28% | 14.04% | 0.00% |
7.84% |
HEX | B9 | CA | EB |
Decimal | 185 | 202 | 235 |
Binary | 10111001 | 11001010 | 11101011 |
Octal | 271 | 312 | 353 |
Examples of css and html codes for elements with #B9CAEB color. Also use rgb(185,202,235) instead hex code.
.myTextColor { color: #B9CAEB; }
<p style="color:#B9CAEB">This sample text font color is #B9CAEB.</p>
This text font color is #B9CAEB.
.myBgColor { background-color: #B9CAEB; }
<div style="background-color:#B9CAEB">Inner text</div>
This div background color is #B9CAEB.
.myBorderColor { border: 1px solid #B9CAEB; }
<div style="border:3px solid #B9CAEB">Div</div>
This div border color is #B9CAEB.
.myOpacity80 { color: #B9CAEB; opacity: 0.8; }
<p style="color:#B9CAEB;opacity:0.8;">80%</p>
Text with #B9CAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9CAEB;}
<p style="text-shadow: 3px 3px 1px #B9CAEB">Text here.</p>
This text has shadow with #B9CAEB color.
.textShadow {text-shadow: 3px 3px 1px #B9CAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9CAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9CAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9CAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9CAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9CAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9CAEB; -webkit-box-shadow: 1px 1px 3px 2px #B9CAEB; box-shadow: 1px 1px 3px 2px #B9CAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9CAEB; -webkit-box-shadow: 1px 1px 3px 2px #B9CAEB; box-shadow:1px 1px 3px 2px #B9CAEB;">
Div content here</div>
This text has color #B9CAEB on black background.
This text has color #B9CAEB on white background.
This text has black color on #B9CAEB background.
This text has white color on #B9CAEB background.