#eaade5 hex color information.
RGB value of #eaade5 is (234,173,229)
Change page background color to #eaade5
| Reset
| RGB | 234 | 173 | 229 |
|---|---|---|---|
| HSL | 0.85 | 0.59 | 0.80 |
| HSV | 305° | 26° | 92° |
| CMYK | 0.00 | 0.26 | 0.02 0.08 |
| XYZ | 63.0181 | 53.0367 | 81.0444 |
| Yxy | 53.0367 | 0.3197 | 0.2691 |
| Hunter Lab | 72.8263 | 27.0137 | -15.0022 |
| CIE-Lab | 77.8967 | 31.2655 | -19.3618 |
#eaade5 hex color red value is 234, green value is 173 and the blue value of its RGB is 173. Cylindrical-coordinate representations (also known as HSL) of color #eaade5 hue: 0.85 , saturation: 0.59 and the lightness value of eaade5 is 0.80.
The process color (four color CMYK) of #eaade5 hex color is 0.00, 0.26, 0.02, 0.08. Web safe color of #eaade5 is #ff99cc
Color #eaade5 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11101010 | 10101101 | 11100101 |
| Octal | 352 | 255 | 345 |
| Decimal | 234 | 173 | 229 |
| Hexadecimal | EA | AD | E5 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#eaade5; }
.myforecolor {color:#eaade5; }
.mybordercolor {border:3px solid #eaade5; }
This sample text font color is #eaade5
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:#eaade5">Text here</p>
This div background color is #eaade5
<div style="background-color:#eaade5">
Div content here</div>
This div border color is #eaade5
<div style="border:3px solid #eaade5">
Div here</div>
| #eaade5 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(234,173,229, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #eaade5;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #eaade5;
-webkit-box-shadow: 1px 1px 3px 2px #eaade5;
box-shadow: 1px 1px 3px 2px #eaade5;
}
<p style="text-shadow: 4px 4px 2px rgba(234,173,229, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #eaade5">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #eaade5
<div style="-moz-box-shadow: 1px 1px 3px 2px #eaade5; -webkit-box-shadow: 1px 1px 3px 2px #eaade5; box-shadow: 1px 1px 3px 2px #eaade5;">
Div content here</div>