#f7fcfd color RGB value is (15, 127, 207).
#f7fcfd hex color red value is 15, green value is 127, and blue value is 207.
Cylindrical-coordinate representations (HSL) of color #f7fcfd
hue: 205,
saturation: 0.86 and lightness: 0.44.
The process color (four-color CMYK) of #f7fcfd color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #f7fcfd is #ff9999. Color #f7fcfd contains mainly RED.
Color spaces of #f7fcfd | Value |
---|---|
RGB | 247, 252, 253 |
HSL | 0.53, 0.6, 0.98 |
HSV | 190°, 2°, 99° |
XYZ | 90.89, 96.49, 106.74 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11110111 | 11111100 | 11111101 |
Octal | 367 | 374 | 375 |
Decimal | 247 | 252 | 253 |
Hex | F7 | FC | FD |
Shades of #f7fcfd
Tints of #f7fcfd
.mybgColor {background-color: #f7fcfd;} .myforeColor {color: #f7fcfd;} .myborderColor {border:3px solid #f7fcfd;}
<p style="color:#f7fcfd">Text here</p>
This sample text is styled with the font color #f7fcfd. 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:#f7fcfd">Div content here</div>
<div style="border:3px solid #f7fcfd">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(247, 252, 253, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #f7fcfd; } .divShadow { -moz-box-shadow: 1px 1px 3px #f7fcfd; -webkit-box-shadow: 1px 1px 3px #f7fcfd; box-shadow: 1px 1px 3px #f7fcfd; }
<p style="text-shadow: 4px 4px 2px rgba(247, 252, 253, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #f7fcfd;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #f7fcfd;
-webkit-box-shadow: 1px 1px 3px #f7fcfd;
box-shadow: 1px 1px 3px #f7fcfd;">Div content here</div>