HEX: #B2C4ED
RGB: (178,196,237)
#B2C4ED contains red, green and blue colors in about the same proportion. Web safe color of #B2C4ED is #99CCFF (or #9CF).
#B2C4ED color RGB value is (178,196,237).
RGB: (178,196,237) (70%,77%,93%)
R 178 of 255 = 70%
G 196 of 255 = 77%
B 237 of 255 = 93%
R + G + B ~ 80%. #B2C4ED is quite light color.
R + G + B =
178 + 196 + 237 = 611 (100%)
R 178 of 611 ~ 29.13%
G 196 of 611 ~ 32.08%
B 237 of 611 ~ 38.79%
#B2C4ED color CMYK value is (25,17,0,7).
CMYK: (25,17,0,7) C25M17Y0K7 (25%,17%,0%,7%) (0.25/0.17/0.00/0.07)
B2 | C4 | ED | |
---|---|---|---|
RGB | 178 | 196 | 237 |
HSL | 222° | 62.11% | 81.37% |
HSB/HSV | 222° | 24.89% | 92.94% |
CMYK | 24.89% | 17.30% | 0.00% |
7.06% |
HEX | B2 | C4 | ED |
Decimal | 178 | 196 | 237 |
Binary | 10110010 | 11000100 | 11101101 |
Octal | 262 | 304 | 355 |
Examples of css and html codes for elements with #B2C4ED color. Also use rgb(178,196,237) instead hex code.
.myTextColor { color: #B2C4ED; }
<p style="color:#B2C4ED">This sample text font color is #B2C4ED.</p>
This text font color is #B2C4ED.
.myBgColor { background-color: #B2C4ED; }
<div style="background-color:#B2C4ED">Inner text</div>
This div background color is #B2C4ED.
.myBorderColor { border: 1px solid #B2C4ED; }
<div style="border:3px solid #B2C4ED">Div</div>
This div border color is #B2C4ED.
.myOpacity80 { color: #B2C4ED; opacity: 0.8; }
<p style="color:#B2C4ED;opacity:0.8;">80%</p>
Text with #B2C4ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2C4ED;}
<p style="text-shadow: 3px 3px 1px #B2C4ED">Text here.</p>
This text has shadow with #B2C4ED color.
.textShadow {text-shadow: 3px 3px 1px #B2C4ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2C4ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2C4ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2C4ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2C4ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2C4ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2C4ED; -webkit-box-shadow: 1px 1px 3px 2px #B2C4ED; box-shadow: 1px 1px 3px 2px #B2C4ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2C4ED; -webkit-box-shadow: 1px 1px 3px 2px #B2C4ED; box-shadow:1px 1px 3px 2px #B2C4ED;">
Div content here</div>
This text has color #B2C4ED on black background.
This text has color #B2C4ED on white background.
This text has black color on #B2C4ED background.
This text has white color on #B2C4ED background.