#9de6cc hex color information.
RGB value of #9de6cc is (157,230,204)
Change page background color to #9de6cc
| Reset
| RGB | 157 | 230 | 204 |
|---|---|---|---|
| HSL | 0.44 | 0.59 | 0.76 |
| HSV | 159° | 32° | 90° |
| CMYK | 0.32 | 0.00 | 0.11 0.10 |
| XYZ | 53.1005 | 68.1214 | 67.4768 |
| Yxy | 68.1214 | 0.2814 | 0.3610 |
| Hunter Lab | 82.5357 | -29.5970 | 9.3026 |
| CIE-Lab | 86.0671 | -28.1409 | 5.4632 |
#9de6cc hex color red value is 157, green value is 230 and the blue value of its RGB is 230. Cylindrical-coordinate representations (also known as HSL) of color #9de6cc hue: 0.44 , saturation: 0.59 and the lightness value of 9de6cc is 0.76.
The process color (four color CMYK) of #9de6cc hex color is 0.32, 0.00, 0.11, 0.10. Web safe color of #9de6cc is #99ffcc
Color #9de6cc contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10011101 | 11100110 | 11001100 |
| Octal | 235 | 346 | 314 |
| Decimal | 157 | 230 | 204 |
| Hexadecimal | 9D | E6 | CC |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#9de6cc; }
.myforecolor {color:#9de6cc; }
.mybordercolor {border:3px solid #9de6cc; }
This sample text font color is #9de6cc
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:#9de6cc">Text here</p>
This div background color is #9de6cc
<div style="background-color:#9de6cc">
Div content here</div>
This div border color is #9de6cc
<div style="border:3px solid #9de6cc">
Div here</div>
| #9de6cc | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(157,230,204, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #9de6cc;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #9de6cc;
-webkit-box-shadow: 1px 1px 3px 2px #9de6cc;
box-shadow: 1px 1px 3px 2px #9de6cc;
}
<p style="text-shadow: 4px 4px 2px rgba(157,230,204, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #9de6cc">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #9de6cc
<div style="-moz-box-shadow: 1px 1px 3px 2px #9de6cc; -webkit-box-shadow: 1px 1px 3px 2px #9de6cc; box-shadow: 1px 1px 3px 2px #9de6cc;">
Div content here</div>