HEX: #B4CFEE
RGB: (180,207,238)
#B4CFEE contains red, green and blue colors in about the same proportion. Web safe color of #B4CFEE is #CCCCFF (or #CCF).
#B4CFEE color RGB value is (180,207,238).
RGB: (180,207,238) (71%,81%,93%)
R 180 of 255 = 71%
G 207 of 255 = 81%
B 238 of 255 = 93%
R + G + B ~ 82%. #B4CFEE is quite light color.
R + G + B =
180 + 207 + 238 = 625 (100%)
R 180 of 625 ~ 28.8%
G 207 of 625 ~ 33.12%
B 238 of 625 ~ 38.08%
#B4CFEE color CMYK value is (24,13,0,7).
CMYK: (24,13,0,7) C24M13Y0K7 (24%,13%,0%,7%) (0.24/0.13/0.00/0.07)
B4 | CF | EE | |
---|---|---|---|
RGB | 180 | 207 | 238 |
HSL | 212° | 63.04% | 81.96% |
HSB/HSV | 212° | 24.37% | 93.33% |
CMYK | 24.37% | 13.03% | 0.00% |
6.67% |
HEX | B4 | CF | EE |
Decimal | 180 | 207 | 238 |
Binary | 10110100 | 11001111 | 11101110 |
Octal | 264 | 317 | 356 |
Examples of css and html codes for elements with #B4CFEE color. Also use rgb(180,207,238) instead hex code.
.myTextColor { color: #B4CFEE; }
<p style="color:#B4CFEE">This sample text font color is #B4CFEE.</p>
This text font color is #B4CFEE.
.myBgColor { background-color: #B4CFEE; }
<div style="background-color:#B4CFEE">Inner text</div>
This div background color is #B4CFEE.
.myBorderColor { border: 1px solid #B4CFEE; }
<div style="border:3px solid #B4CFEE">Div</div>
This div border color is #B4CFEE.
.myOpacity80 { color: #B4CFEE; opacity: 0.8; }
<p style="color:#B4CFEE;opacity:0.8;">80%</p>
Text with #B4CFEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4CFEE;}
<p style="text-shadow: 3px 3px 1px #B4CFEE">Text here.</p>
This text has shadow with #B4CFEE color.
.textShadow {text-shadow: 3px 3px 1px #B4CFEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4CFEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4CFEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4CFEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4CFEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4CFEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4CFEE; -webkit-box-shadow: 1px 1px 3px 2px #B4CFEE; box-shadow: 1px 1px 3px 2px #B4CFEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4CFEE; -webkit-box-shadow: 1px 1px 3px 2px #B4CFEE; box-shadow:1px 1px 3px 2px #B4CFEE;">
Div content here</div>
This text has color #B4CFEE on black background.
This text has color #B4CFEE on white background.
This text has black color on #B4CFEE background.
This text has white color on #B4CFEE background.