color details

Color Details
#fafafe Color Hex

#fafafe color RGB value is (15, 175, 175).
#fafafe hex color red value is 15, green value is 175, and blue value is 175.
Cylindrical-coordinate representations (HSL) of color #fafafe hue: 180, saturation: 0.84 and lightness: 0.37.

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

Color Spaces
Color spaces of #fafafeValue
RGB250, 250, 254
HSL0.67, 0.67, 0.99
HSV240°, 2°, 100°
XYZ91.5, 95.85, 107.43
Base Numbers
Base Red Green Blue
Binary 11111010 11111010 11111110
Octal 372 372 376
Decimal 250 250 254
Hex FA FA FE

RGB Percentages for Color #fafafe

33.16%
33.16%
33.69%

CMYK Percentages of the Color #fafafe

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top