color details

Color Details
#ededee Color Hex

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

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

Color Spaces
Color spaces of #ededeeValue
RGB237, 237, 238
HSL0.67, 0.03, 0.93
HSV240°, 0°, 93°
XYZ80.64, 84.75, 92.98
Base Numbers
Base Red Green Blue
Binary 11101101 11101101 11101110
Octal 355 355 356
Decimal 237 237 238
Hex ED ED EE

RGB Percentages for Color #ededee

33.29%
33.29%
33.43%

CMYK Percentages of the Color #ededee

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top