HEX: #B0CCFA
RGB: (176,204,250)
#B0CCFA contains mainly green and blue colors. Web safe color of #B0CCFA is #99CCFF (or #9CF).
#B0CCFA color RGB value is (176,204,250).
RGB: (176,204,250) (69%,80%,98%)
R 176 of 255 = 69%
G 204 of 255 = 80%
B 250 of 255 = 98%
R + G + B ~ 82%. #B0CCFA is quite light color.
R + G + B =
176 + 204 + 250 = 630 (100%)
R 176 of 630 ~ 27.94%
G 204 of 630 ~ 32.38%
B 250 of 630 ~ 39.68%
#B0CCFA color CMYK value is (30,18,0,2).
CMYK: (30,18,0,2) C30M18Y0K2 (30%,18%,0%,2%) (0.30/0.18/0.00/0.02)
B0 | CC | FA | |
---|---|---|---|
RGB | 176 | 204 | 250 |
HSL | 217° | 88.10% | 83.53% |
HSB/HSV | 217° | 29.60% | 98.04% |
CMYK | 29.60% | 18.40% | 0.00% |
1.96% |
HEX | B0 | CC | FA |
Decimal | 176 | 204 | 250 |
Binary | 10110000 | 11001100 | 11111010 |
Octal | 260 | 314 | 372 |
Examples of css and html codes for elements with #B0CCFA color. Also use rgb(176,204,250) instead hex code.
.myTextColor { color: #B0CCFA; }
<p style="color:#B0CCFA">This sample text font color is #B0CCFA.</p>
This text font color is #B0CCFA.
.myBgColor { background-color: #B0CCFA; }
<div style="background-color:#B0CCFA">Inner text</div>
This div background color is #B0CCFA.
.myBorderColor { border: 1px solid #B0CCFA; }
<div style="border:3px solid #B0CCFA">Div</div>
This div border color is #B0CCFA.
.myOpacity80 { color: #B0CCFA; opacity: 0.8; }
<p style="color:#B0CCFA;opacity:0.8;">80%</p>
Text with #B0CCFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0CCFA;}
<p style="text-shadow: 3px 3px 1px #B0CCFA">Text here.</p>
This text has shadow with #B0CCFA color.
.textShadow {text-shadow: 3px 3px 1px #B0CCFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0CCFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0CCFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0CCFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0CCFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0CCFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0CCFA; -webkit-box-shadow: 1px 1px 3px 2px #B0CCFA; box-shadow: 1px 1px 3px 2px #B0CCFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0CCFA; -webkit-box-shadow: 1px 1px 3px 2px #B0CCFA; box-shadow:1px 1px 3px 2px #B0CCFA;">
Div content here</div>
This text has color #B0CCFA on black background.
This text has color #B0CCFA on white background.
This text has black color on #B0CCFA background.
This text has white color on #B0CCFA background.