color details

Color Details
#fafefe Color Hex

#fafefe color RGB value is (15, 175, 239).
#fafefe hex color red value is 15, green value is 175, and blue value is 239.
Cylindrical-coordinate representations (HSL) of color #fafefe hue: 197.14, saturation: 0.88 and lightness: 0.5.

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

Color Spaces
Color spaces of #fafefeValue
RGB250, 254, 254
HSL0.5, 0.67, 0.99
HSV180°, 2°, 100°
XYZ92.75, 98.36, 107.85
Base Numbers
Base Red Green Blue
Binary 11111010 11111110 11111110
Octal 372 376 376
Decimal 250 254 254
Hex FA FE FE

RGB Percentages for Color #fafefe

32.98%
33.51%
33.51%

CMYK Percentages of the Color #fafefe

1.57%
0.39%
CSS Codes for Color #fafefe
.mybgColor {background-color: #fafefe;}
.myforeColor {color: #fafefe;}
.myborderColor {border:3px solid #fafefe;}
Text Font Color #fafefe

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top