#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 of #facdc1 | Value |
---|---|
RGB | 250, 205, 193 |
HSL | 0.04, 0.85, 0.87 |
HSV | 13°, 23°, 98° |
XYZ | 70.88, 67.84, 59.8 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11111010 | 11001101 | 11000001 |
Octal | 372 | 315 | 301 |
Decimal | 250 | 205 | 193 |
Hex | FA | CD | C1 |
Shades of #facdc1
Tints of #facdc1
.mybgColor {background-color: #facdc1;} .myforeColor {color: #facdc1;} .myborderColor {border:3px solid #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,
<div style="background-color:#facdc1">Div content here</div>
<div style="border:3px solid #facdc1">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(250, 205, 193, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #facdc1;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>