#dcb2dc hex color information.
RGB value of #dcb2dc is (220,178,220)
Change page background color to #dcb2dc
| Reset
| RGB | 220 | 178 | 220 |
|---|---|---|---|
| HSL | 0.83 | 0.38 | 0.78 |
| HSV | 300° | 19° | 86° |
| CMYK | 0.00 | 0.19 | 0.00 0.14 |
| XYZ | 58.3539 | 52.2237 | 74.7148 |
| Yxy | 52.2237 | 0.3149 | 0.2818 |
| Hunter Lab | 72.2660 | 17.6712 | -10.7129 |
| CIE-Lab | 77.4144 | 22.3108 | -15.3462 |
#dcb2dc hex color red value is 220, green value is 178 and the blue value of its RGB is 178. Cylindrical-coordinate representations (also known as HSL) of color #dcb2dc hue: 0.83 , saturation: 0.38 and the lightness value of dcb2dc is 0.78.
The process color (four color CMYK) of #dcb2dc hex color is 0.00, 0.19, 0.00, 0.14. Web safe color of #dcb2dc is #cc99cc
Color #dcb2dc contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11011100 | 10110010 | 11011100 |
| Octal | 334 | 262 | 334 |
| Decimal | 220 | 178 | 220 |
| Hexadecimal | DC | B2 | DC |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#dcb2dc; }
.myforecolor {color:#dcb2dc; }
.mybordercolor {border:3px solid #dcb2dc; }
This sample text font color is #dcb2dc
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:#dcb2dc">Text here</p>
This div background color is #dcb2dc
<div style="background-color:#dcb2dc">
Div content here</div>
This div border color is #dcb2dc
<div style="border:3px solid #dcb2dc">
Div here</div>
| #dcb2dc | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(220,178,220, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #dcb2dc;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #dcb2dc;
-webkit-box-shadow: 1px 1px 3px 2px #dcb2dc;
box-shadow: 1px 1px 3px 2px #dcb2dc;
}
<p style="text-shadow: 4px 4px 2px rgba(220,178,220, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #dcb2dc">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #dcb2dc
<div style="-moz-box-shadow: 1px 1px 3px 2px #dcb2dc; -webkit-box-shadow: 1px 1px 3px 2px #dcb2dc; box-shadow: 1px 1px 3px 2px #dcb2dc;">
Div content here</div>