color details

Color Details
#fafdff Color Hex

#fafdff color RGB value is (15, 175, 223).
#fafdff hex color red value is 15, green value is 175, and blue value is 223.
Cylindrical-coordinate representations (HSL) of color #fafdff hue: 193.85, saturation: 0.87 and lightness: 0.47.

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

Color Spaces
Color spaces of #fafdffValue
RGB250, 253, 255
HSL0.57, 1, 0.99
HSV204°, 2°, 100°
XYZ92.6, 97.79, 108.59
Base Numbers
Base Red Green Blue
Binary 11111010 11111101 11111111
Octal 372 375 377
Decimal 250 253 255
Hex FA FD FF

RGB Percentages for Color #fafdff

32.98%
33.38%
33.64%

CMYK Percentages of the Color #fafdff

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top