HEX: #DDDCEB
RGB: (221,220,235)
#DDDCEB contains red, green and blue colors in about the same proportion. Web safe color of #DDDCEB is #CCCCFF (or #CCF).
#DDDCEB color RGB value is (221,220,235).
RGB: (221,220,235) (87%,86%,92%)
R 221 of 255 = 87%
G 220 of 255 = 86%
B 235 of 255 = 92%
R + G + B ~ 88%. #DDDCEB is light color.
R + G + B =
221 + 220 + 235 = 676 (100%)
R 221 of 676 ~ 32.69%
G 220 of 676 ~ 32.54%
B 235 of 676 ~ 34.76%
#DDDCEB color CMYK value is (6,6,0,8).
CMYK: (6,6,0,8) C6M6Y0K8 (6%,6%,0%,8%) (0.06/0.06/0.00/0.08)
DD | DC | EB | |
---|---|---|---|
RGB | 221 | 220 | 235 |
HSL | 244° | 27.27% | 89.22% |
HSB/HSV | 244° | 6.38% | 92.16% |
CMYK | 5.96% | 6.38% | 0.00% |
7.84% |
HEX | DD | DC | EB |
Decimal | 221 | 220 | 235 |
Binary | 11011101 | 11011100 | 11101011 |
Octal | 335 | 334 | 353 |
Examples of css and html codes for elements with #DDDCEB color. Also use rgb(221,220,235) instead hex code.
.myTextColor { color: #DDDCEB; }
<p style="color:#DDDCEB">This sample text font color is #DDDCEB.</p>
This text font color is #DDDCEB.
.myBgColor { background-color: #DDDCEB; }
<div style="background-color:#DDDCEB">Inner text</div>
This div background color is #DDDCEB.
.myBorderColor { border: 1px solid #DDDCEB; }
<div style="border:3px solid #DDDCEB">Div</div>
This div border color is #DDDCEB.
.myOpacity80 { color: #DDDCEB; opacity: 0.8; }
<p style="color:#DDDCEB;opacity:0.8;">80%</p>
Text with #DDDCEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDDCEB;}
<p style="text-shadow: 3px 3px 1px #DDDCEB">Text here.</p>
This text has shadow with #DDDCEB color.
.textShadow {text-shadow: 3px 3px 1px #DDDCEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDDCEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDDCEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDDCEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDDCEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDDCEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDDCEB; -webkit-box-shadow: 1px 1px 3px 2px #DDDCEB; box-shadow: 1px 1px 3px 2px #DDDCEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDDCEB; -webkit-box-shadow: 1px 1px 3px 2px #DDDCEB; box-shadow:1px 1px 3px 2px #DDDCEB;">
Div content here</div>
This text has color #DDDCEB on black background.
This text has color #DDDCEB on white background.
This text has black color on #DDDCEB background.
This text has white color on #DDDCEB background.