HEX: #D6C4FF
RGB: (214,196,255)
#D6C4FF contains red, green and blue colors in about the same proportion. Web safe color of #D6C4FF is #CCCCFF (or #CCF).
#D6C4FF color RGB value is (214,196,255).
RGB: (214,196,255) (84%,77%,100%)
R 214 of 255 = 84%
G 196 of 255 = 77%
B 255 of 255 = 100%
R + G + B ~ 87%. #D6C4FF is light color.
R + G + B =
214 + 196 + 255 = 665 (100%)
R 214 of 665 ~ 32.18%
G 196 of 665 ~ 29.47%
B 255 of 665 ~ 38.35%
#D6C4FF color CMYK value is (16,23,0,0).
CMYK: (16,23,0,0) C16M23Y0K0 (16%,23%,0%,0%) (0.16/0.23/0.00/0.00)
D6 | C4 | FF | |
---|---|---|---|
RGB | 214 | 196 | 255 |
HSL | 258° | 100.00% | 88.43% |
HSB/HSV | 258° | 23.14% | 100.00% |
CMYK | 16.08% | 23.14% | 0.00% |
0.00% |
HEX | D6 | C4 | FF |
Decimal | 214 | 196 | 255 |
Binary | 11010110 | 11000100 | 11111111 |
Octal | 326 | 304 | 377 |
Examples of css and html codes for elements with #D6C4FF color. Also use rgb(214,196,255) instead hex code.
.myTextColor { color: #D6C4FF; }
<p style="color:#D6C4FF">This sample text font color is #D6C4FF.</p>
This text font color is #D6C4FF.
.myBgColor { background-color: #D6C4FF; }
<div style="background-color:#D6C4FF">Inner text</div>
This div background color is #D6C4FF.
.myBorderColor { border: 1px solid #D6C4FF; }
<div style="border:3px solid #D6C4FF">Div</div>
This div border color is #D6C4FF.
.myOpacity80 { color: #D6C4FF; opacity: 0.8; }
<p style="color:#D6C4FF;opacity:0.8;">80%</p>
Text with #D6C4FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6C4FF;}
<p style="text-shadow: 3px 3px 1px #D6C4FF">Text here.</p>
This text has shadow with #D6C4FF color.
.textShadow {text-shadow: 3px 3px 1px #D6C4FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6C4FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6C4FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6C4FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6C4FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6C4FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6C4FF; -webkit-box-shadow: 1px 1px 3px 2px #D6C4FF; box-shadow: 1px 1px 3px 2px #D6C4FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6C4FF; -webkit-box-shadow: 1px 1px 3px 2px #D6C4FF; box-shadow:1px 1px 3px 2px #D6C4FF;">
Div content here</div>
This text has color #D6C4FF on black background.
This text has color #D6C4FF on white background.
This text has black color on #D6C4FF background.
This text has white color on #D6C4FF background.