HEX: #DDBBEF
RGB: (221,187,239)
#DDBBEF contains red, green and blue colors in about the same proportion. Web safe color of #DDBBEF is #CCCCFF (or #CCF).
#DDBBEF color RGB value is (221,187,239).
RGB: (221,187,239) (87%,73%,94%)
R 221 of 255 = 87%
G 187 of 255 = 73%
B 239 of 255 = 94%
R + G + B ~ 85%. #DDBBEF is quite light color.
R + G + B =
221 + 187 + 239 = 647 (100%)
R 221 of 647 ~ 34.16%
G 187 of 647 ~ 28.9%
B 239 of 647 ~ 36.94%
#DDBBEF color CMYK value is (8,22,0,6).
CMYK: (8,22,0,6) C8M22Y0K6 (8%,22%,0%,6%) (0.08/0.22/0.00/0.06)
DD | BB | EF | |
---|---|---|---|
RGB | 221 | 187 | 239 |
HSL | 279° | 61.90% | 83.53% |
HSB/HSV | 279° | 21.76% | 93.73% |
CMYK | 7.53% | 21.76% | 0.00% |
6.27% |
HEX | DD | BB | EF |
Decimal | 221 | 187 | 239 |
Binary | 11011101 | 10111011 | 11101111 |
Octal | 335 | 273 | 357 |
Examples of css and html codes for elements with #DDBBEF color. Also use rgb(221,187,239) instead hex code.
.myTextColor { color: #DDBBEF; }
<p style="color:#DDBBEF">This sample text font color is #DDBBEF.</p>
This text font color is #DDBBEF.
.myBgColor { background-color: #DDBBEF; }
<div style="background-color:#DDBBEF">Inner text</div>
This div background color is #DDBBEF.
.myBorderColor { border: 1px solid #DDBBEF; }
<div style="border:3px solid #DDBBEF">Div</div>
This div border color is #DDBBEF.
.myOpacity80 { color: #DDBBEF; opacity: 0.8; }
<p style="color:#DDBBEF;opacity:0.8;">80%</p>
Text with #DDBBEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDBBEF;}
<p style="text-shadow: 3px 3px 1px #DDBBEF">Text here.</p>
This text has shadow with #DDBBEF color.
.textShadow {text-shadow: 3px 3px 1px #DDBBEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDBBEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDBBEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDBBEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDBBEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDBBEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDBBEF; -webkit-box-shadow: 1px 1px 3px 2px #DDBBEF; box-shadow: 1px 1px 3px 2px #DDBBEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDBBEF; -webkit-box-shadow: 1px 1px 3px 2px #DDBBEF; box-shadow:1px 1px 3px 2px #DDBBEF;">
Div content here</div>
This text has color #DDBBEF on black background.
This text has color #DDBBEF on white background.
This text has black color on #DDBBEF background.
This text has white color on #DDBBEF background.