HEX: #DBB0DD
RGB: (219,176,221)
#DBB0DD contains red, green and blue colors in about the same proportion. Web safe color of #DBB0DD is #CC99CC (or #C9C).
#DBB0DD color RGB value is (219,176,221).
RGB: (219,176,221) (86%,69%,87%)
R 219 of 255 = 86%
G 176 of 255 = 69%
B 221 of 255 = 87%
R + G + B ~ 81%. #DBB0DD is quite light color.
R + G + B =
219 + 176 + 221 = 616 (100%)
R 219 of 616 ~ 35.55%
G 176 of 616 ~ 28.57%
B 221 of 616 ~ 35.88%
#DBB0DD color CMYK value is (1,20,0,13).
CMYK: (1,20,0,13) C1M20Y0K13 (1%,20%,0%,13%) (0.01/0.20/0.00/0.13)
DB | B0 | DD | |
---|---|---|---|
RGB | 219 | 176 | 221 |
HSL | 297° | 39.82% | 77.84% |
HSB/HSV | 297° | 20.36% | 86.67% |
CMYK | 0.90% | 20.36% | 0.00% |
13.33% |
HEX | DB | B0 | DD |
Decimal | 219 | 176 | 221 |
Binary | 11011011 | 10110000 | 11011101 |
Octal | 333 | 260 | 335 |
Examples of css and html codes for elements with #DBB0DD color. Also use rgb(219,176,221) instead hex code.
.myTextColor { color: #DBB0DD; }
<p style="color:#DBB0DD">This sample text font color is #DBB0DD.</p>
This text font color is #DBB0DD.
.myBgColor { background-color: #DBB0DD; }
<div style="background-color:#DBB0DD">Inner text</div>
This div background color is #DBB0DD.
.myBorderColor { border: 1px solid #DBB0DD; }
<div style="border:3px solid #DBB0DD">Div</div>
This div border color is #DBB0DD.
.myOpacity80 { color: #DBB0DD; opacity: 0.8; }
<p style="color:#DBB0DD;opacity:0.8;">80%</p>
Text with #DBB0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBB0DD;}
<p style="text-shadow: 3px 3px 1px #DBB0DD">Text here.</p>
This text has shadow with #DBB0DD color.
.textShadow {text-shadow: 3px 3px 1px #DBB0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBB0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBB0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBB0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBB0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBB0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBB0DD; -webkit-box-shadow: 1px 1px 3px 2px #DBB0DD; box-shadow: 1px 1px 3px 2px #DBB0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBB0DD; -webkit-box-shadow: 1px 1px 3px 2px #DBB0DD; box-shadow:1px 1px 3px 2px #DBB0DD;">
Div content here</div>
This text has color #DBB0DD on black background.
This text has color #DBB0DD on white background.
This text has black color on #DBB0DD background.
This text has white color on #DBB0DD background.