HEX: #B6CCF0
RGB: (182,204,240)
#B6CCF0 contains red, green and blue colors in about the same proportion. Web safe color of #B6CCF0 is #CCCCFF (or #CCF).
#B6CCF0 color RGB value is (182,204,240).
RGB: (182,204,240) (71%,80%,94%)
R 182 of 255 = 71%
G 204 of 255 = 80%
B 240 of 255 = 94%
R + G + B ~ 82%. #B6CCF0 is quite light color.
R + G + B =
182 + 204 + 240 = 626 (100%)
R 182 of 626 ~ 29.07%
G 204 of 626 ~ 32.59%
B 240 of 626 ~ 38.34%
#B6CCF0 color CMYK value is (24,15,0,6).
CMYK: (24,15,0,6) C24M15Y0K6 (24%,15%,0%,6%) (0.24/0.15/0.00/0.06)
B6 | CC | F0 | |
---|---|---|---|
RGB | 182 | 204 | 240 |
HSL | 217° | 65.91% | 82.75% |
HSB/HSV | 217° | 24.17% | 94.12% |
CMYK | 24.17% | 15.00% | 0.00% |
5.88% |
HEX | B6 | CC | F0 |
Decimal | 182 | 204 | 240 |
Binary | 10110110 | 11001100 | 11110000 |
Octal | 266 | 314 | 360 |
Examples of css and html codes for elements with #B6CCF0 color. Also use rgb(182,204,240) instead hex code.
.myTextColor { color: #B6CCF0; }
<p style="color:#B6CCF0">This sample text font color is #B6CCF0.</p>
This text font color is #B6CCF0.
.myBgColor { background-color: #B6CCF0; }
<div style="background-color:#B6CCF0">Inner text</div>
This div background color is #B6CCF0.
.myBorderColor { border: 1px solid #B6CCF0; }
<div style="border:3px solid #B6CCF0">Div</div>
This div border color is #B6CCF0.
.myOpacity80 { color: #B6CCF0; opacity: 0.8; }
<p style="color:#B6CCF0;opacity:0.8;">80%</p>
Text with #B6CCF0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6CCF0;}
<p style="text-shadow: 3px 3px 1px #B6CCF0">Text here.</p>
This text has shadow with #B6CCF0 color.
.textShadow {text-shadow: 3px 3px 1px #B6CCF0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6CCF0, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6CCF0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6CCF0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6CCF0, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6CCF0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6CCF0; -webkit-box-shadow: 1px 1px 3px 2px #B6CCF0; box-shadow: 1px 1px 3px 2px #B6CCF0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6CCF0; -webkit-box-shadow: 1px 1px 3px 2px #B6CCF0; box-shadow:1px 1px 3px 2px #B6CCF0;">
Div content here</div>
This text has color #B6CCF0 on black background.
This text has color #B6CCF0 on white background.
This text has black color on #B6CCF0 background.
This text has white color on #B6CCF0 background.