#e5e5ff color RGB value is (14, 94, 95).
#e5e5ff hex color red value is 14, green value is 94, and blue value is 95.
Cylindrical-coordinate representations (HSL) of color #e5e5ff
hue: 180.74,
saturation: 0.74 and lightness: 0.21.
The process color (four-color CMYK) of #e5e5ff color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #e5e5ff is #ff9999. Color #e5e5ff contains mainly RED.
| Color spaces of #e5e5ff | Value |
|---|---|
| RGB | 229, 229, 255 |
| HSL | 0.67, 1, 0.95 |
| HSV | 240°, 10°, 100° |
| XYZ | 78.38, 79.92, 105.88 |
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11100101 | 11100101 | 11111111 |
| Octal | 345 | 345 | 377 |
| Decimal | 229 | 229 | 255 |
| Hex | E5 | E5 | FF |
Shades of #e5e5ff
Tints of #e5e5ff
.mybgColor {background-color: #e5e5ff;}
.myforeColor {color: #e5e5ff;}
.myborderColor {border:3px solid #e5e5ff;}
<p style="color:#e5e5ff">Text here</p>
This sample text is styled with the font color #e5e5ff. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,
<div style="background-color:#e5e5ff">Div content here</div>
<div style="border:3px solid #e5e5ff">Div here</div>
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(229, 229, 255, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #e5e5ff; }
.divShadow {
-moz-box-shadow: 1px 1px 3px #e5e5ff;
-webkit-box-shadow: 1px 1px 3px #e5e5ff;
box-shadow: 1px 1px 3px #e5e5ff; }
<p style="text-shadow: 4px 4px 2px rgba(229, 229, 255, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #e5e5ff;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #e5e5ff;
-webkit-box-shadow: 1px 1px 3px #e5e5ff;
box-shadow: 1px 1px 3px #e5e5ff;">Div content here</div>
