color details

Color Details
#e0b0ff Color Hex

#e0b0ff color RGB value is (14, 11, 15).
#e0b0ff hex color red value is 14, green value is 11, and blue value is 15.
Cylindrical-coordinate representations (HSL) of color #e0b0ff hue: 285, saturation: 0.15 and lightness: 0.05.

The process color (four-color CMYK) of #e0b0ff color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #e0b0ff is #ff9999. Color #e0b0ff contains mainly RED.

Color Spaces
Color spaces of #e0b0ffValue
RGB224, 176, 255
HSL0.77, 1, 0.85
HSV276°, 31°, 100°
XYZ64.31, 54.12, 101.65
Base Numbers
Base Red Green Blue
Binary 11100000 10110000 11111111
Octal 340 260 377
Decimal 224 176 255
Hex E0 B0 FF

RGB Percentages for Color #e0b0ff

34.2%
26.87%
38.93%

CMYK Percentages of the Color #e0b0ff

12.16%
30.98%
CSS Codes for Color #e0b0ff
.mybgColor {background-color: #e0b0ff;}
.myforeColor {color: #e0b0ff;}
.myborderColor {border:3px solid #e0b0ff;}
Text Font Color #e0b0ff

<p style="color:#e0b0ff">Text here</p>

This sample text is styled with the font color #e0b0ff. 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 #e0b0ff

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

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

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

The border color of this div is #e0b0ff
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(224, 176, 255, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #e0b0ff;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #e0b0ff;
-webkit-box-shadow: 1px 1px 3px #e0b0ff;
box-shadow: 1px 1px 3px #e0b0ff;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(224, 176, 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 #e0b0ff;">Text here</p>

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

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #e0b0ff; -webkit-box-shadow: 1px 1px 3px #e0b0ff; box-shadow: 1px 1px 3px #e0b0ff;">Div content here</div>

This div box has a shadow with a specified color. #e0b0ff
Scroll to Top