HEX: #D1C6EF
RGB: (209,198,239)
#D1C6EF contains red, green and blue colors in about the same proportion. Web safe color of #D1C6EF is #CCCCFF (or #CCF).
#D1C6EF color RGB value is (209,198,239).
RGB: (209,198,239) (82%,78%,94%)
R 209 of 255 = 82%
G 198 of 255 = 78%
B 239 of 255 = 94%
R + G + B ~ 85%. #D1C6EF is quite light color.
R + G + B =
209 + 198 + 239 = 646 (100%)
R 209 of 646 ~ 32.35%
G 198 of 646 ~ 30.65%
B 239 of 646 ~ 37%
#D1C6EF color CMYK value is (13,17,0,6).
CMYK: (13,17,0,6) C13M17Y0K6 (13%,17%,0%,6%) (0.13/0.17/0.00/0.06)
D1 | C6 | EF | |
---|---|---|---|
RGB | 209 | 198 | 239 |
HSL | 256° | 56.16% | 85.69% |
HSB/HSV | 256° | 17.15% | 93.73% |
CMYK | 12.55% | 17.15% | 0.00% |
6.27% |
HEX | D1 | C6 | EF |
Decimal | 209 | 198 | 239 |
Binary | 11010001 | 11000110 | 11101111 |
Octal | 321 | 306 | 357 |
Examples of css and html codes for elements with #D1C6EF color. Also use rgb(209,198,239) instead hex code.
.myTextColor { color: #D1C6EF; }
<p style="color:#D1C6EF">This sample text font color is #D1C6EF.</p>
This text font color is #D1C6EF.
.myBgColor { background-color: #D1C6EF; }
<div style="background-color:#D1C6EF">Inner text</div>
This div background color is #D1C6EF.
.myBorderColor { border: 1px solid #D1C6EF; }
<div style="border:3px solid #D1C6EF">Div</div>
This div border color is #D1C6EF.
.myOpacity80 { color: #D1C6EF; opacity: 0.8; }
<p style="color:#D1C6EF;opacity:0.8;">80%</p>
Text with #D1C6EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D1C6EF;}
<p style="text-shadow: 3px 3px 1px #D1C6EF">Text here.</p>
This text has shadow with #D1C6EF color.
.textShadow {text-shadow: 3px 3px 1px #D1C6EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D1C6EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D1C6EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D1C6EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D1C6EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D1C6EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D1C6EF; -webkit-box-shadow: 1px 1px 3px 2px #D1C6EF; box-shadow: 1px 1px 3px 2px #D1C6EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D1C6EF; -webkit-box-shadow: 1px 1px 3px 2px #D1C6EF; box-shadow:1px 1px 3px 2px #D1C6EF;">
Div content here</div>
This text has color #D1C6EF on black background.
This text has color #D1C6EF on white background.
This text has black color on #D1C6EF background.
This text has white color on #D1C6EF background.