HEX: #DDBEEC
RGB: (221,190,236)
#DDBEEC contains red, green and blue colors in about the same proportion. Web safe color of #DDBEEC is #CCCCFF (or #CCF).
#DDBEEC color RGB value is (221,190,236).
RGB: (221,190,236) (87%,75%,93%)
R 221 of 255 = 87%
G 190 of 255 = 75%
B 236 of 255 = 93%
R + G + B ~ 85%. #DDBEEC is quite light color.
R + G + B =
221 + 190 + 236 = 647 (100%)
R 221 of 647 ~ 34.16%
G 190 of 647 ~ 29.37%
B 236 of 647 ~ 36.48%
#DDBEEC color CMYK value is (6,19,0,7).
CMYK: (6,19,0,7) C6M19Y0K7 (6%,19%,0%,7%) (0.06/0.19/0.00/0.07)
DD | BE | EC | |
---|---|---|---|
RGB | 221 | 190 | 236 |
HSL | 280° | 54.76% | 83.53% |
HSB/HSV | 280° | 19.49% | 92.55% |
CMYK | 6.36% | 19.49% | 0.00% |
7.45% |
HEX | DD | BE | EC |
Decimal | 221 | 190 | 236 |
Binary | 11011101 | 10111110 | 11101100 |
Octal | 335 | 276 | 354 |
Examples of css and html codes for elements with #DDBEEC color. Also use rgb(221,190,236) instead hex code.
.myTextColor { color: #DDBEEC; }
<p style="color:#DDBEEC">This sample text font color is #DDBEEC.</p>
This text font color is #DDBEEC.
.myBgColor { background-color: #DDBEEC; }
<div style="background-color:#DDBEEC">Inner text</div>
This div background color is #DDBEEC.
.myBorderColor { border: 1px solid #DDBEEC; }
<div style="border:3px solid #DDBEEC">Div</div>
This div border color is #DDBEEC.
.myOpacity80 { color: #DDBEEC; opacity: 0.8; }
<p style="color:#DDBEEC;opacity:0.8;">80%</p>
Text with #DDBEEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDBEEC;}
<p style="text-shadow: 3px 3px 1px #DDBEEC">Text here.</p>
This text has shadow with #DDBEEC color.
.textShadow {text-shadow: 3px 3px 1px #DDBEEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDBEEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDBEEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDBEEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDBEEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDBEEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDBEEC; -webkit-box-shadow: 1px 1px 3px 2px #DDBEEC; box-shadow: 1px 1px 3px 2px #DDBEEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDBEEC; -webkit-box-shadow: 1px 1px 3px 2px #DDBEEC; box-shadow:1px 1px 3px 2px #DDBEEC;">
Div content here</div>
This text has color #DDBEEC on black background.
This text has color #DDBEEC on white background.
This text has black color on #DDBEEC background.
This text has white color on #DDBEEC background.