color details

Color Details
#FFF5EE Color Hex

#FFF5EE color RGB value is (15, 255, 94).
#FFF5EE hex color red value is 15, green value is 255, and blue value is 94.
Cylindrical-coordinate representations (HSL) of color #FFF5EE hue: 139.75, saturation: 1 and lightness: 0.53.

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

Color Spaces
Color spaces of #FFF5EEValue
RGB255, 245, 238
HSL0.07, 1, 0.97
HSV25°, 7°, 100°
XYZ89.32, 92.74, 94.07
Base Numbers
Base Red Green Blue
Binary 11111111 11110101 11101110
Octal 377 365 356
Decimal 255 245 238
Hex FF F5 EE

RGB Percentages for Color #FFF5EE

34.55%
33.2%
32.25%

CMYK Percentages of the Color #FFF5EE

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

This div box has a shadow with a specified color. #FFF5EE
Scroll to Top