HEX: #D6CEDA
RGB: (214,206,218)
#D6CEDA contains red, green and blue colors in about the same proportion. Web safe color of #D6CEDA is #CCCCCC (or #CCC).
#D6CEDA color RGB value is (214,206,218).
RGB: (214,206,218) (84%,81%,85%)
R 214 of 255 = 84%
G 206 of 255 = 81%
B 218 of 255 = 85%
R + G + B ~ 83%. #D6CEDA is quite light color.
R + G + B =
214 + 206 + 218 = 638 (100%)
R 214 of 638 ~ 33.54%
G 206 of 638 ~ 32.29%
B 218 of 638 ~ 34.17%
#D6CEDA color CMYK value is (2,6,0,15).
CMYK: (2,6,0,15) C2M6Y0K15 (2%,6%,0%,15%) (0.02/0.06/0.00/0.15)
D6 | CE | DA | |
---|---|---|---|
RGB | 214 | 206 | 218 |
HSL | 280° | 13.95% | 83.14% |
HSB/HSV | 280° | 5.50% | 85.49% |
CMYK | 1.83% | 5.50% | 0.00% |
14.51% |
HEX | D6 | CE | DA |
Decimal | 214 | 206 | 218 |
Binary | 11010110 | 11001110 | 11011010 |
Octal | 326 | 316 | 332 |
Examples of css and html codes for elements with #D6CEDA color. Also use rgb(214,206,218) instead hex code.
.myTextColor { color: #D6CEDA; }
<p style="color:#D6CEDA">This sample text font color is #D6CEDA.</p>
This text font color is #D6CEDA.
.myBgColor { background-color: #D6CEDA; }
<div style="background-color:#D6CEDA">Inner text</div>
This div background color is #D6CEDA.
.myBorderColor { border: 1px solid #D6CEDA; }
<div style="border:3px solid #D6CEDA">Div</div>
This div border color is #D6CEDA.
.myOpacity80 { color: #D6CEDA; opacity: 0.8; }
<p style="color:#D6CEDA;opacity:0.8;">80%</p>
Text with #D6CEDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6CEDA;}
<p style="text-shadow: 3px 3px 1px #D6CEDA">Text here.</p>
This text has shadow with #D6CEDA color.
.textShadow {text-shadow: 3px 3px 1px #D6CEDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6CEDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6CEDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6CEDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6CEDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6CEDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6CEDA; -webkit-box-shadow: 1px 1px 3px 2px #D6CEDA; box-shadow: 1px 1px 3px 2px #D6CEDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6CEDA; -webkit-box-shadow: 1px 1px 3px 2px #D6CEDA; box-shadow:1px 1px 3px 2px #D6CEDA;">
Div content here</div>
This text has color #D6CEDA on black background.
This text has color #D6CEDA on white background.
This text has black color on #D6CEDA background.
This text has white color on #D6CEDA background.