#f1d3fa hex color information.
RGB value of #f1d3fa is (241,211,250)
Change page background color to #f1d3fa
| Reset
| RGB | 241 | 211 | 250 |
|---|---|---|---|
| HSL | 0.79 | 0.80 | 0.90 |
| HSV | 286° | 16° | 98° |
| CMYK | 0.04 | 0.16 | 0.00 0.02 |
| XYZ | 76.8252 | 72.1914 | 100.3277 |
| Yxy | 72.1914 | 0.3081 | 0.2895 |
| Hunter Lab | 84.9655 | 12.7087 | -10.5341 |
| CIE-Lab | 88.0606 | 17.2187 | -15.2034 |
#f1d3fa hex color red value is 241, green value is 211 and the blue value of its RGB is 211. Cylindrical-coordinate representations (also known as HSL) of color #f1d3fa hue: 0.79 , saturation: 0.80 and the lightness value of f1d3fa is 0.90.
The process color (four color CMYK) of #f1d3fa hex color is 0.04, 0.16, 0.00, 0.02. Web safe color of #f1d3fa is #ffccff
Color #f1d3fa contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11110001 | 11010011 | 11111010 |
| Octal | 361 | 323 | 372 |
| Decimal | 241 | 211 | 250 |
| Hexadecimal | F1 | D3 | FA |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#f1d3fa; }
.myforecolor {color:#f1d3fa; }
.mybordercolor {border:3px solid #f1d3fa; }
This sample text font color is #f1d3fa
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:#f1d3fa">Text here</p>
This div background color is #f1d3fa
<div style="background-color:#f1d3fa">
Div content here</div>
This div border color is #f1d3fa
<div style="border:3px solid #f1d3fa">
Div here</div>
| #f1d3fa | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(241,211,250, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #f1d3fa;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #f1d3fa;
-webkit-box-shadow: 1px 1px 3px 2px #f1d3fa;
box-shadow: 1px 1px 3px 2px #f1d3fa;
}
<p style="text-shadow: 4px 4px 2px rgba(241,211,250, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #f1d3fa">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #f1d3fa
<div style="-moz-box-shadow: 1px 1px 3px 2px #f1d3fa; -webkit-box-shadow: 1px 1px 3px 2px #f1d3fa; box-shadow: 1px 1px 3px 2px #f1d3fa;">
Div content here</div>