HEX: #D5CEDD
RGB: (213,206,221)
#D5CEDD contains red, green and blue colors in about the same proportion. Web safe color of #D5CEDD is #CCCCCC (or #CCC).
#D5CEDD color RGB value is (213,206,221).
RGB: (213,206,221) (84%,81%,87%)
R 213 of 255 = 84%
G 206 of 255 = 81%
B 221 of 255 = 87%
R + G + B ~ 84%. #D5CEDD is quite light color.
R + G + B =
213 + 206 + 221 = 640 (100%)
R 213 of 640 ~ 33.28%
G 206 of 640 ~ 32.19%
B 221 of 640 ~ 34.53%
#D5CEDD color CMYK value is (4,7,0,13).
CMYK: (4,7,0,13) C4M7Y0K13 (4%,7%,0%,13%) (0.04/0.07/0.00/0.13)
D5 | CE | DD | |
---|---|---|---|
RGB | 213 | 206 | 221 |
HSL | 268° | 18.07% | 83.73% |
HSB/HSV | 268° | 6.79% | 86.67% |
CMYK | 3.62% | 6.79% | 0.00% |
13.33% |
HEX | D5 | CE | DD |
Decimal | 213 | 206 | 221 |
Binary | 11010101 | 11001110 | 11011101 |
Octal | 325 | 316 | 335 |
Examples of css and html codes for elements with #D5CEDD color. Also use rgb(213,206,221) instead hex code.
.myTextColor { color: #D5CEDD; }
<p style="color:#D5CEDD">This sample text font color is #D5CEDD.</p>
This text font color is #D5CEDD.
.myBgColor { background-color: #D5CEDD; }
<div style="background-color:#D5CEDD">Inner text</div>
This div background color is #D5CEDD.
.myBorderColor { border: 1px solid #D5CEDD; }
<div style="border:3px solid #D5CEDD">Div</div>
This div border color is #D5CEDD.
.myOpacity80 { color: #D5CEDD; opacity: 0.8; }
<p style="color:#D5CEDD;opacity:0.8;">80%</p>
Text with #D5CEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5CEDD;}
<p style="text-shadow: 3px 3px 1px #D5CEDD">Text here.</p>
This text has shadow with #D5CEDD color.
.textShadow {text-shadow: 3px 3px 1px #D5CEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5CEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5CEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5CEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5CEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5CEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5CEDD; -webkit-box-shadow: 1px 1px 3px 2px #D5CEDD; box-shadow: 1px 1px 3px 2px #D5CEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5CEDD; -webkit-box-shadow: 1px 1px 3px 2px #D5CEDD; box-shadow:1px 1px 3px 2px #D5CEDD;">
Div content here</div>
This text has color #D5CEDD on black background.
This text has color #D5CEDD on white background.
This text has black color on #D5CEDD background.
This text has white color on #D5CEDD background.