color details

Color Details
#facdc1 Color Hex

#facdc1 color RGB value is (15, 172, 220).
#facdc1 hex color red value is 15, green value is 172, and blue value is 220.
Cylindrical-coordinate representations (HSL) of color #facdc1 hue: 194.05, saturation: 0.87 and lightness: 0.46.

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

Color Spaces
Color spaces of #facdc1Value
RGB250, 205, 193
HSL0.04, 0.85, 0.87
HSV13°, 23°, 98°
XYZ70.88, 67.84, 59.8
Base Numbers
Base Red Green Blue
Binary 11111010 11001101 11000001
Octal 372 315 301
Decimal 250 205 193
Hex FA CD C1

RGB Percentages for Color #facdc1

38.58%
31.64%
29.78%

CMYK Percentages of the Color #facdc1

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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