#eeeefc color RGB value is (14, 238, 239).
#eeeefc hex color red value is 14, green value is 238, and blue value is 239.
Cylindrical-coordinate representations (HSL) of color #eeeefc
hue: 180.27,
saturation: 0.89 and lightness: 0.5.
The process color (four-color CMYK) of #eeeefc color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #eeeefc is #ff9999. Color #eeeefc contains mainly RED.
Color spaces of #eeeefc | Value |
---|---|
RGB | 238, 238, 252 |
HSL | 0.67, 0.7, 0.96 |
HSV | 240°, 6°, 99° |
XYZ | 83.4, 86.35, 104.35 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11101110 | 11101110 | 11111100 |
Octal | 356 | 356 | 374 |
Decimal | 238 | 238 | 252 |
Hex | EE | EE | FC |
Shades of #eeeefc
Tints of #eeeefc
.mybgColor {background-color: #eeeefc;} .myforeColor {color: #eeeefc;} .myborderColor {border:3px solid #eeeefc;}
<p style="color:#eeeefc">Text here</p>
This sample text is styled with the font color #eeeefc. 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,
<div style="background-color:#eeeefc">Div content here</div>
<div style="border:3px solid #eeeefc">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(238, 238, 252, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #eeeefc; } .divShadow { -moz-box-shadow: 1px 1px 3px #eeeefc; -webkit-box-shadow: 1px 1px 3px #eeeefc; box-shadow: 1px 1px 3px #eeeefc; }
<p style="text-shadow: 4px 4px 2px rgba(238, 238, 252, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #eeeefc;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #eeeefc;
-webkit-box-shadow: 1px 1px 3px #eeeefc;
box-shadow: 1px 1px 3px #eeeefc;">Div content here</div>