color details

Color Details
#ebcdff Color Hex

#ebcdff color RGB value is (14, 188, 223).
#ebcdff hex color red value is 14, green value is 188, and blue value is 223.
Cylindrical-coordinate representations (HSL) of color #ebcdff hue: 190.05, saturation: 0.88 and lightness: 0.46.

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

Color Spaces
Color spaces of #ebcdffValue
RGB235, 205, 255
HSL0.77, 1, 0.9
HSV276°, 20°, 100°
XYZ74.14, 68.55, 103.91
Base Numbers
Base Red Green Blue
Binary 11101011 11001101 11111111
Octal 353 315 377
Decimal 235 205 255
Hex EB CD FF

RGB Percentages for Color #ebcdff

33.81%
29.5%
36.69%

CMYK Percentages of the Color #ebcdff

7.84%
19.61%
CSS Codes for Color #ebcdff
.mybgColor {background-color: #ebcdff;}
.myforeColor {color: #ebcdff;}
.myborderColor {border:3px solid #ebcdff;}
Text Font Color #ebcdff

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top