color details

Color Details
#ededff Color Hex

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

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

Color Spaces
Color spaces of #ededffValue
RGB237, 237, 255
HSL0.67, 1, 0.96
HSV240°, 7°, 100°
XYZ83.26, 85.79, 106.76
Base Numbers
Base Red Green Blue
Binary 11101101 11101101 11111111
Octal 355 355 377
Decimal 237 237 255
Hex ED ED FF

RGB Percentages for Color #ededff

32.51%
32.51%
34.98%

CMYK Percentages of the Color #ededff

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top