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