HEX: #B4DFFA
RGB: (180,223,250)
#B4DFFA contains mainly green and blue colors. Web safe color of #B4DFFA is #CCCCFF (or #CCF).
#B4DFFA color RGB value is (180,223,250).
RGB: (180,223,250) (71%,87%,98%)
R 180 of 255 = 71%
G 223 of 255 = 87%
B 250 of 255 = 98%
R + G + B ~ 85%. #B4DFFA is quite light color.
R + G + B =
180 + 223 + 250 = 653 (100%)
R 180 of 653 ~ 27.57%
G 223 of 653 ~ 34.15%
B 250 of 653 ~ 38.28%
#B4DFFA color CMYK value is (28,11,0,2).
CMYK: (28,11,0,2) C28M11Y0K2 (28%,11%,0%,2%) (0.28/0.11/0.00/0.02)
B4 | DF | FA | |
---|---|---|---|
RGB | 180 | 223 | 250 |
HSL | 203° | 87.50% | 84.31% |
HSB/HSV | 203° | 28.00% | 98.04% |
CMYK | 28.00% | 10.80% | 0.00% |
1.96% |
HEX | B4 | DF | FA |
Decimal | 180 | 223 | 250 |
Binary | 10110100 | 11011111 | 11111010 |
Octal | 264 | 337 | 372 |
Examples of css and html codes for elements with #B4DFFA color. Also use rgb(180,223,250) instead hex code.
.myTextColor { color: #B4DFFA; }
<p style="color:#B4DFFA">This sample text font color is #B4DFFA.</p>
This text font color is #B4DFFA.
.myBgColor { background-color: #B4DFFA; }
<div style="background-color:#B4DFFA">Inner text</div>
This div background color is #B4DFFA.
.myBorderColor { border: 1px solid #B4DFFA; }
<div style="border:3px solid #B4DFFA">Div</div>
This div border color is #B4DFFA.
.myOpacity80 { color: #B4DFFA; opacity: 0.8; }
<p style="color:#B4DFFA;opacity:0.8;">80%</p>
Text with #B4DFFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4DFFA;}
<p style="text-shadow: 3px 3px 1px #B4DFFA">Text here.</p>
This text has shadow with #B4DFFA color.
.textShadow {text-shadow: 3px 3px 1px #B4DFFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4DFFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4DFFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4DFFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4DFFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4DFFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4DFFA; -webkit-box-shadow: 1px 1px 3px 2px #B4DFFA; box-shadow: 1px 1px 3px 2px #B4DFFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4DFFA; -webkit-box-shadow: 1px 1px 3px 2px #B4DFFA; box-shadow:1px 1px 3px 2px #B4DFFA;">
Div content here</div>
This text has color #B4DFFA on black background.
This text has color #B4DFFA on white background.
This text has black color on #B4DFFA background.
This text has white color on #B4DFFA background.