color details

Color Details
#EEE8AA Color Hex

#EEE8AA color RGB value is (14, 238, 138).
#EEE8AA hex color red value is 14, green value is 238, and blue value is 138.
Cylindrical-coordinate representations (HSL) of color #EEE8AA hue: 153.21, saturation: 0.89 and lightness: 0.49.

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

Color Spaces
Color spaces of #EEE8AAValue
RGB238, 232, 170
HSL0.15, 0.67, 0.8
HSV55°, 29°, 93°
XYZ71.37, 78.79, 49.47
Base Numbers
Base Red Green Blue
Binary 11101110 11101000 10101010
Octal 356 350 252
Decimal 238 232 170
Hex EE E8 AA

RGB Percentages for Color #EEE8AA

37.19%
36.25%
26.56%

CMYK Percentages of the Color #EEE8AA

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top