#bce4e6 hex color information.
RGB value of #bce4e6 is (188,228,230)
Change page background color to #bce4e6
| Reset
| RGB | 188 | 228 | 230 |
|---|---|---|---|
| HSL | 0.51 | 0.46 | 0.82 |
| HSV | 183° | 18° | 90° |
| CMYK | 0.18 | 0.01 | 0.00 0.10 |
| XYZ | 62.7654 | 71.8913 | 85.4312 |
| Yxy | 71.8913 | 0.2852 | 0.3266 |
| Hunter Lab | 84.7887 | -16.2445 | -0.3871 |
| CIE-Lab | 87.9162 | -12.5059 | -5.2997 |
#bce4e6 hex color red value is 188, green value is 228 and the blue value of its RGB is 228. Cylindrical-coordinate representations (also known as HSL) of color #bce4e6 hue: 0.51 , saturation: 0.46 and the lightness value of bce4e6 is 0.82.
The process color (four color CMYK) of #bce4e6 hex color is 0.18, 0.01, 0.00, 0.10. Web safe color of #bce4e6 is #ccccff
Color #bce4e6 contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10111100 | 11100100 | 11100110 |
| Octal | 274 | 344 | 346 |
| Decimal | 188 | 228 | 230 |
| Hexadecimal | BC | E4 | E6 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#bce4e6; }
.myforecolor {color:#bce4e6; }
.mybordercolor {border:3px solid #bce4e6; }
This sample text font color is #bce4e6
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#bce4e6">Text here</p>
This div background color is #bce4e6
<div style="background-color:#bce4e6">
Div content here</div>
This div border color is #bce4e6
<div style="border:3px solid #bce4e6">
Div here</div>
| #bce4e6 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(188,228,230, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #bce4e6;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #bce4e6;
-webkit-box-shadow: 1px 1px 3px 2px #bce4e6;
box-shadow: 1px 1px 3px 2px #bce4e6;
}
<p style="text-shadow: 4px 4px 2px rgba(188,228,230, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #bce4e6">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #bce4e6
<div style="-moz-box-shadow: 1px 1px 3px 2px #bce4e6; -webkit-box-shadow: 1px 1px 3px 2px #bce4e6; box-shadow: 1px 1px 3px 2px #bce4e6;">
Div content here</div>