#feffff hex color information.
RGB value of #feffff is (254,255,255)
Change page background color to #feffff
| Reset
| RGB | 254 | 255 | 255 |
|---|---|---|---|
| HSL | 0.50 | 1.00 | 1.00 |
| HSV | 180° | 0° | 100° |
| CMYK | 0.00 | 0.00 | 0.00 0.00 |
| XYZ | 94.6831 | 99.8108 | 108.8828 |
| Yxy | 99.8108 | 0.3121 | 0.3290 |
| Hunter Lab | 99.9054 | -5.6649 | 5.3160 |
| CIE-Lab | 99.9268 | -0.3234 | -0.1261 |
#feffff hex color red value is 254, green value is 255 and the blue value of its RGB is 255. Cylindrical-coordinate representations (also known as HSL) of color #feffff hue: 0.50 , saturation: 1.00 and the lightness value of feffff is 1.00.
The process color (four color CMYK) of #feffff hex color is 0.00, 0.00, 0.00, 0.00. Web safe color of #feffff is #ffffff
Color #feffff contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11111110 | 11111111 | 11111111 |
| Octal | 376 | 377 | 377 |
| Decimal | 254 | 255 | 255 |
| Hexadecimal | FE | FF | FF |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#feffff; }
.myforecolor {color:#feffff; }
.mybordercolor {border:3px solid #feffff; }
This sample text font color is #feffff
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:#feffff">Text here</p>
This div background color is #feffff
<div style="background-color:#feffff">
Div content here</div>
This div border color is #feffff
<div style="border:3px solid #feffff">
Div here</div>
| #feffff | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(254,255,255, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #feffff;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #feffff;
-webkit-box-shadow: 1px 1px 3px 2px #feffff;
box-shadow: 1px 1px 3px 2px #feffff;
}
<p style="text-shadow: 4px 4px 2px rgba(254,255,255, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #feffff">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #feffff
<div style="-moz-box-shadow: 1px 1px 3px 2px #feffff; -webkit-box-shadow: 1px 1px 3px 2px #feffff; box-shadow: 1px 1px 3px 2px #feffff;">
Div content here</div>