color details

Color Details
#e5e5ff Color Hex

#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
Color spaces of #e5e5ffValue
RGB229, 229, 255
HSL0.67, 1, 0.95
HSV240°, 10°, 100°
XYZ78.38, 79.92, 105.88
Base Numbers
Base Red Green Blue
Binary 11100101 11100101 11111111
Octal 345 345 377
Decimal 229 229 255
Hex E5 E5 FF

RGB Percentages for Color #e5e5ff

32.12%
32.12%
35.76%

CMYK Percentages of the Color #e5e5ff

10.2%
10.2%
CSS Codes for Color #e5e5ff
.mybgColor {background-color: #e5e5ff;}
.myforeColor {color: #e5e5ff;}
.myborderColor {border:3px solid #e5e5ff;}
Text Font Color #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,

Background Color #e5e5ff

<div style="background-color:#e5e5ff">Div content here</div>

The background color of this div is #e5e5ff
Border Color #e5e5ff

<div style="border:3px solid #e5e5ff">Div here</div>

The border color of this div is #e5e5ff
Css3 Examples
            .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;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(229, 229, 255, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #e5e5ff;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<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>

This div box has a shadow with a specified color. #e5e5ff

Scroll to Top