color details

Color Details
#fffaec Color Hex

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

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

Color Spaces
Color spaces of #fffaecValue
RGB255, 250, 236
HSL0.12, 1, 0.96
HSV44°, 7°, 100°
XYZ90.56, 95.69, 93.04
Base Numbers
Base Red Green Blue
Binary 11111111 11111010 11101100
Octal 377 372 354
Decimal 255 250 236
Hex FF FA EC

RGB Percentages for Color #fffaec

34.41%
33.74%
31.85%

CMYK Percentages of the Color #fffaec

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top