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