#fedacc hex color information.
RGB value of #fedacc is (254,218,204)
Change page background color to #fedacc
| Reset
| RGB | 254 | 218 | 204 |
|---|---|---|---|
| HSL | 0.05 | 0.96 | 0.90 |
| HSV | 17° | 20° | 100° |
| CMYK | 0.00 | 0.14 | 0.20 0.00 |
| XYZ | 76.8435 | 75.5733 | 67.6638 |
| Yxy | 75.5733 | 0.3492 | 0.3434 |
| Hunter Lab | 86.9329 | 5.6508 | 14.7050 |
| CIE-Lab | 89.6609 | 10.3582 | 11.5020 |
#fedacc hex color red value is 254, green value is 218 and the blue value of its RGB is 218. Cylindrical-coordinate representations (also known as HSL) of color #fedacc hue: 0.05 , saturation: 0.96 and the lightness value of fedacc is 0.90.
The process color (four color CMYK) of #fedacc hex color is 0.00, 0.14, 0.20, 0.00. Web safe color of #fedacc is #ffcccc
Color #fedacc contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11111110 | 11011010 | 11001100 |
| Octal | 376 | 332 | 314 |
| Decimal | 254 | 218 | 204 |
| Hexadecimal | FE | DA | CC |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#fedacc; }
.myforecolor {color:#fedacc; }
.mybordercolor {border:3px solid #fedacc; }
This sample text font color is #fedacc
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:#fedacc">Text here</p>
This div background color is #fedacc
<div style="background-color:#fedacc">
Div content here</div>
This div border color is #fedacc
<div style="border:3px solid #fedacc">
Div here</div>
| #fedacc | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(254,218,204, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #fedacc;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #fedacc;
-webkit-box-shadow: 1px 1px 3px 2px #fedacc;
box-shadow: 1px 1px 3px 2px #fedacc;
}
<p style="text-shadow: 4px 4px 2px rgba(254,218,204, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #fedacc">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #fedacc
<div style="-moz-box-shadow: 1px 1px 3px 2px #fedacc; -webkit-box-shadow: 1px 1px 3px 2px #fedacc; box-shadow: 1px 1px 3px 2px #fedacc;">
Div content here</div>