#f0faf0 hex color information.
RGB value of #f0faf0 is (240,250,240)
Change page background color to #f0faf0
| Reset
| RGB | 240 | 250 | 240 |
|---|---|---|---|
| HSL | 0.33 | 0.50 | 0.96 |
| HSV | 120° | 4° | 98° |
| CMYK | 0.04 | 0.00 | 0.04 0.02 |
| XYZ | 85.8490 | 93.1877 | 95.9004 |
| Yxy | 93.1877 | 0.3122 | 0.3389 |
| Hunter Lab | 96.5338 | -10.1913 | 8.6727 |
| CIE-Lab | 97.3037 | -5.0572 | 3.6389 |
#f0faf0 hex color red value is 240, green value is 250 and the blue value of its RGB is 250. Cylindrical-coordinate representations (also known as HSL) of color #f0faf0 hue: 0.33 , saturation: 0.50 and the lightness value of f0faf0 is 0.96.
The process color (four color CMYK) of #f0faf0 hex color is 0.04, 0.00, 0.04, 0.02. Web safe color of #f0faf0 is #ffffff
Color #f0faf0 contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11110000 | 11111010 | 11110000 |
| Octal | 360 | 372 | 360 |
| Decimal | 240 | 250 | 240 |
| Hexadecimal | F0 | FA | F0 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#f0faf0; }
.myforecolor {color:#f0faf0; }
.mybordercolor {border:3px solid #f0faf0; }
This sample text font color is #f0faf0
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#f0faf0">Text here</p>
This div background color is #f0faf0
<div style="background-color:#f0faf0">
Div content here</div>
This div border color is #f0faf0
<div style="border:3px solid #f0faf0">
Div here</div>
| #f0faf0 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(240,250,240, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #f0faf0;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #f0faf0;
-webkit-box-shadow: 1px 1px 3px 2px #f0faf0;
box-shadow: 1px 1px 3px 2px #f0faf0;
}
<p style="text-shadow: 4px 4px 2px rgba(240,250,240, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #f0faf0">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #f0faf0
<div style="-moz-box-shadow: 1px 1px 3px 2px #f0faf0; -webkit-box-shadow: 1px 1px 3px 2px #f0faf0; box-shadow: 1px 1px 3px 2px #f0faf0;">
Div content here</div>