HEX: #D6C4DF
RGB: (214,196,223)
#D6C4DF contains red, green and blue colors in about the same proportion. Web safe color of #D6C4DF is #CCCCCC (or #CCC).
#D6C4DF color RGB value is (214,196,223).
RGB: (214,196,223) (84%,77%,87%)
R 214 of 255 = 84%
G 196 of 255 = 77%
B 223 of 255 = 87%
R + G + B ~ 83%. #D6C4DF is quite light color.
R + G + B =
214 + 196 + 223 = 633 (100%)
R 214 of 633 ~ 33.81%
G 196 of 633 ~ 30.96%
B 223 of 633 ~ 35.23%
#D6C4DF color CMYK value is (4,12,0,13).
CMYK: (4,12,0,13) C4M12Y0K13 (4%,12%,0%,13%) (0.04/0.12/0.00/0.13)
D6 | C4 | DF | |
---|---|---|---|
RGB | 214 | 196 | 223 |
HSL | 280° | 29.67% | 82.16% |
HSB/HSV | 280° | 12.11% | 87.45% |
CMYK | 4.04% | 12.11% | 0.00% |
12.55% |
HEX | D6 | C4 | DF |
Decimal | 214 | 196 | 223 |
Binary | 11010110 | 11000100 | 11011111 |
Octal | 326 | 304 | 337 |
Examples of css and html codes for elements with #D6C4DF color. Also use rgb(214,196,223) instead hex code.
.myTextColor { color: #D6C4DF; }
<p style="color:#D6C4DF">This sample text font color is #D6C4DF.</p>
This text font color is #D6C4DF.
.myBgColor { background-color: #D6C4DF; }
<div style="background-color:#D6C4DF">Inner text</div>
This div background color is #D6C4DF.
.myBorderColor { border: 1px solid #D6C4DF; }
<div style="border:3px solid #D6C4DF">Div</div>
This div border color is #D6C4DF.
.myOpacity80 { color: #D6C4DF; opacity: 0.8; }
<p style="color:#D6C4DF;opacity:0.8;">80%</p>
Text with #D6C4DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6C4DF;}
<p style="text-shadow: 3px 3px 1px #D6C4DF">Text here.</p>
This text has shadow with #D6C4DF color.
.textShadow {text-shadow: 3px 3px 1px #D6C4DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6C4DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6C4DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6C4DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6C4DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6C4DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6C4DF; -webkit-box-shadow: 1px 1px 3px 2px #D6C4DF; box-shadow: 1px 1px 3px 2px #D6C4DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6C4DF; -webkit-box-shadow: 1px 1px 3px 2px #D6C4DF; box-shadow:1px 1px 3px 2px #D6C4DF;">
Div content here</div>
This text has color #D6C4DF on black background.
This text has color #D6C4DF on white background.
This text has black color on #D6C4DF background.
This text has white color on #D6C4DF background.