#d65acb hex color information.
RGB value of #d65acb is (214,90,203)
Change page background color to #d65acb
| Reset
| RGB | 214 | 90 | 203 |
|---|---|---|---|
| HSL | 0.85 | 0.60 | 0.60 |
| HSV | 305° | 58° | 84° |
| CMYK | 0.00 | 0.58 | 0.05 0.16 |
| XYZ | 42.1672 | 25.9203 | 59.2806 |
| Yxy | 25.9203 | 0.3311 | 0.2035 |
| Hunter Lab | 50.9120 | 58.7444 | -33.3974 |
| CIE-Lab | 57.9613 | 62.5439 | -35.7910 |
#d65acb hex color red value is 214, green value is 90 and the blue value of its RGB is 90. Cylindrical-coordinate representations (also known as HSL) of color #d65acb hue: 0.85 , saturation: 0.60 and the lightness value of d65acb is 0.60.
The process color (four color CMYK) of #d65acb hex color is 0.00, 0.58, 0.05, 0.16. Web safe color of #d65acb is #cc66cc
Color #d65acb contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11010110 | 01011010 | 11001011 |
| Octal | 326 | 132 | 313 |
| Decimal | 214 | 90 | 203 |
| Hexadecimal | D6 | 5A | CB |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d65acb; }
.myforecolor {color:#d65acb; }
.mybordercolor {border:3px solid #d65acb; }
This sample text font color is #d65acb
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:#d65acb">Text here</p>
This div background color is #d65acb
<div style="background-color:#d65acb">
Div content here</div>
This div border color is #d65acb
<div style="border:3px solid #d65acb">
Div here</div>
| #d65acb | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(214,90,203, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d65acb;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d65acb;
-webkit-box-shadow: 1px 1px 3px 2px #d65acb;
box-shadow: 1px 1px 3px 2px #d65acb;
}
<p style="text-shadow: 4px 4px 2px rgba(214,90,203, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d65acb">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d65acb
<div style="-moz-box-shadow: 1px 1px 3px 2px #d65acb; -webkit-box-shadow: 1px 1px 3px 2px #d65acb; box-shadow: 1px 1px 3px 2px #d65acb;">
Div content here</div>