#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 of #fafafe | Value |
|---|---|
| RGB | 250, 250, 254 |
| HSL | 0.67, 0.67, 0.99 |
| HSV | 240°, 2°, 100° |
| XYZ | 91.5, 95.85, 107.43 |
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11111010 | 11111010 | 11111110 |
| Octal | 372 | 372 | 376 |
| Decimal | 250 | 250 | 254 |
| Hex | FA | FA | FE |
Shades of #fafafe
Tints of #fafafe
.mybgColor {background-color: #fafafe;}
.myforeColor {color: #fafafe;}
.myborderColor {border:3px solid #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,
<div style="background-color:#fafafe">Div content here</div>
<div style="border:3px solid #fafafe">Div here</div>
.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; }
<p style="text-shadow: 4px 4px 2px rgba(250, 250, 254, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #fafafe;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<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>
