HEX: #D4C9FD
RGB: (212,201,253)
#D4C9FD contains red, green and blue colors in about the same proportion. Web safe color of #D4C9FD is #CCCCFF (or #CCF).
#D4C9FD color RGB value is (212,201,253).
RGB: (212,201,253) (83%,79%,99%)
R 212 of 255 = 83%
G 201 of 255 = 79%
B 253 of 255 = 99%
R + G + B ~ 87%. #D4C9FD is light color.
R + G + B =
212 + 201 + 253 = 666 (100%)
R 212 of 666 ~ 31.83%
G 201 of 666 ~ 30.18%
B 253 of 666 ~ 37.99%
#D4C9FD color CMYK value is (16,21,0,1).
CMYK: (16,21,0,1) C16M21Y0K1 (16%,21%,0%,1%) (0.16/0.21/0.00/0.01)
D4 | C9 | FD | |
---|---|---|---|
RGB | 212 | 201 | 253 |
HSL | 253° | 92.86% | 89.02% |
HSB/HSV | 253° | 20.55% | 99.22% |
CMYK | 16.21% | 20.55% | 0.00% |
0.78% |
HEX | D4 | C9 | FD |
Decimal | 212 | 201 | 253 |
Binary | 11010100 | 11001001 | 11111101 |
Octal | 324 | 311 | 375 |
Examples of css and html codes for elements with #D4C9FD color. Also use rgb(212,201,253) instead hex code.
.myTextColor { color: #D4C9FD; }
<p style="color:#D4C9FD">This sample text font color is #D4C9FD.</p>
This text font color is #D4C9FD.
.myBgColor { background-color: #D4C9FD; }
<div style="background-color:#D4C9FD">Inner text</div>
This div background color is #D4C9FD.
.myBorderColor { border: 1px solid #D4C9FD; }
<div style="border:3px solid #D4C9FD">Div</div>
This div border color is #D4C9FD.
.myOpacity80 { color: #D4C9FD; opacity: 0.8; }
<p style="color:#D4C9FD;opacity:0.8;">80%</p>
Text with #D4C9FD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4C9FD;}
<p style="text-shadow: 3px 3px 1px #D4C9FD">Text here.</p>
This text has shadow with #D4C9FD color.
.textShadow {text-shadow: 3px 3px 1px #D4C9FD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4C9FD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4C9FD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4C9FD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4C9FD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4C9FD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4C9FD; -webkit-box-shadow: 1px 1px 3px 2px #D4C9FD; box-shadow: 1px 1px 3px 2px #D4C9FD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4C9FD; -webkit-box-shadow: 1px 1px 3px 2px #D4C9FD; box-shadow:1px 1px 3px 2px #D4C9FD;">
Div content here</div>
This text has color #D4C9FD on black background.
This text has color #D4C9FD on white background.
This text has black color on #D4C9FD background.
This text has white color on #D4C9FD background.