color details

Color Details
#fabcca Color Hex

#fabcca color RGB value is (15, 171, 204).
#fabcca hex color red value is 15, green value is 171, and blue value is 204.
Cylindrical-coordinate representations (HSL) of color #fabcca hue: 190.48, saturation: 0.86 and lightness: 0.43.

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

Color Spaces
Color spaces of #fabccaValue
RGB250, 188, 202
HSL0.96, 0.86, 0.86
HSV346°, 25°, 98°
XYZ68.07, 60.56, 63.97
Base Numbers
Base Red Green Blue
Binary 11111010 10111100 11001010
Octal 372 274 312
Decimal 250 188 202
Hex FA BC CA

RGB Percentages for Color #fabcca

39.06%
29.38%
31.56%

CMYK Percentages of the Color #fabcca

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

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

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

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

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

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

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

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

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

Shadow Div Box

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

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

Scroll to Top