HEX: #B3E0ED
RGB: (179,224,237)
#B3E0ED contains red, green and blue colors in about the same proportion. Web safe color of #B3E0ED is #99CCFF (or #9CF).
#B3E0ED color RGB value is (179,224,237).
RGB: (179,224,237) (70%,88%,93%)
R 179 of 255 = 70%
G 224 of 255 = 88%
B 237 of 255 = 93%
R + G + B ~ 84%. #B3E0ED is quite light color.
R + G + B =
179 + 224 + 237 = 640 (100%)
R 179 of 640 ~ 27.97%
G 224 of 640 ~ 35%
B 237 of 640 ~ 37.03%
#B3E0ED color CMYK value is (24,5,0,7).
CMYK: (24,5,0,7) C24M5Y0K7 (24%,5%,0%,7%) (0.24/0.05/0.00/0.07)
B3 | E0 | ED | |
---|---|---|---|
RGB | 179 | 224 | 237 |
HSL | 193° | 61.70% | 81.57% |
HSB/HSV | 193° | 24.47% | 92.94% |
CMYK | 24.47% | 5.49% | 0.00% |
7.06% |
HEX | B3 | E0 | ED |
Decimal | 179 | 224 | 237 |
Binary | 10110011 | 11100000 | 11101101 |
Octal | 263 | 340 | 355 |
Examples of css and html codes for elements with #B3E0ED color. Also use rgb(179,224,237) instead hex code.
.myTextColor { color: #B3E0ED; }
<p style="color:#B3E0ED">This sample text font color is #B3E0ED.</p>
This text font color is #B3E0ED.
.myBgColor { background-color: #B3E0ED; }
<div style="background-color:#B3E0ED">Inner text</div>
This div background color is #B3E0ED.
.myBorderColor { border: 1px solid #B3E0ED; }
<div style="border:3px solid #B3E0ED">Div</div>
This div border color is #B3E0ED.
.myOpacity80 { color: #B3E0ED; opacity: 0.8; }
<p style="color:#B3E0ED;opacity:0.8;">80%</p>
Text with #B3E0ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B3E0ED;}
<p style="text-shadow: 3px 3px 1px #B3E0ED">Text here.</p>
This text has shadow with #B3E0ED color.
.textShadow {text-shadow: 3px 3px 1px #B3E0ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B3E0ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #B3E0ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B3E0ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B3E0ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #B3E0ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B3E0ED; -webkit-box-shadow: 1px 1px 3px 2px #B3E0ED; box-shadow: 1px 1px 3px 2px #B3E0ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B3E0ED; -webkit-box-shadow: 1px 1px 3px 2px #B3E0ED; box-shadow:1px 1px 3px 2px #B3E0ED;">
Div content here</div>
This text has color #B3E0ED on black background.
This text has color #B3E0ED on white background.
This text has black color on #B3E0ED background.
This text has white color on #B3E0ED background.