HEX: #E0CEDD
RGB: (224,206,221)
#E0CEDD contains red, green and blue colors in about the same proportion. Web safe color of #E0CEDD is #CCCCCC (or #CCC).
#E0CEDD color RGB value is (224,206,221).
RGB: (224,206,221) (88%,81%,87%)
R 224 of 255 = 88%
G 206 of 255 = 81%
B 221 of 255 = 87%
R + G + B ~ 85%. #E0CEDD is quite light color.
R + G + B =
224 + 206 + 221 = 651 (100%)
R 224 of 651 ~ 34.41%
G 206 of 651 ~ 31.64%
B 221 of 651 ~ 33.95%
#E0CEDD color CMYK value is (0,8,1,12).
CMYK: (0,8,1,12) C0M8Y1K12 (0%,8%,1%,12%) (0.00/0.08/0.01/0.12)
E0 | CE | DD | |
---|---|---|---|
RGB | 224 | 206 | 221 |
HSL | 310° | 22.50% | 84.31% |
HSB/HSV | 310° | 8.04% | 87.84% |
CMYK | 0.00% | 8.04% | 1.34% |
12.16% |
HEX | E0 | CE | DD |
Decimal | 224 | 206 | 221 |
Binary | 11100000 | 11001110 | 11011101 |
Octal | 340 | 316 | 335 |
Examples of css and html codes for elements with #E0CEDD color. Also use rgb(224,206,221) instead hex code.
.myTextColor { color: #E0CEDD; }
<p style="color:#E0CEDD">This sample text font color is #E0CEDD.</p>
This text font color is #E0CEDD.
.myBgColor { background-color: #E0CEDD; }
<div style="background-color:#E0CEDD">Inner text</div>
This div background color is #E0CEDD.
.myBorderColor { border: 1px solid #E0CEDD; }
<div style="border:3px solid #E0CEDD">Div</div>
This div border color is #E0CEDD.
.myOpacity80 { color: #E0CEDD; opacity: 0.8; }
<p style="color:#E0CEDD;opacity:0.8;">80%</p>
Text with #E0CEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0CEDD;}
<p style="text-shadow: 3px 3px 1px #E0CEDD">Text here.</p>
This text has shadow with #E0CEDD color.
.textShadow {text-shadow: 3px 3px 1px #E0CEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0CEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0CEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0CEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0CEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0CEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0CEDD; -webkit-box-shadow: 1px 1px 3px 2px #E0CEDD; box-shadow: 1px 1px 3px 2px #E0CEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0CEDD; -webkit-box-shadow: 1px 1px 3px 2px #E0CEDD; box-shadow:1px 1px 3px 2px #E0CEDD;">
Div content here</div>
This text has color #E0CEDD on black background.
This text has color #E0CEDD on white background.
This text has black color on #E0CEDD background.
This text has white color on #E0CEDD background.