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