HEX: #DB76DD
RGB: (219,118,221)
#DB76DD contains mainly red and blue colors. Web safe color of #DB76DD is #CC66CC (or #C6C).
#DB76DD color RGB value is (219,118,221).
RGB: (219,118,221) (86%,46%,87%)
R 219 of 255 = 86%
G 118 of 255 = 46%
B 221 of 255 = 87%
R + G + B ~ 73%. #DB76DD is quite light color.
R + G + B =
219 + 118 + 221 = 558 (100%)
R 219 of 558 ~ 39.25%
G 118 of 558 ~ 21.15%
B 221 of 558 ~ 39.61%
#DB76DD color CMYK value is (1,47,0,13).
CMYK: (1,47,0,13) C1M47Y0K13 (1%,47%,0%,13%) (0.01/0.47/0.00/0.13)
DB | 76 | DD | |
---|---|---|---|
RGB | 219 | 118 | 221 |
HSL | 299° | 60.23% | 66.47% |
HSB/HSV | 299° | 46.61% | 86.67% |
CMYK | 0.90% | 46.61% | 0.00% |
13.33% |
HEX | DB | 76 | DD |
Decimal | 219 | 118 | 221 |
Binary | 11011011 | 1110110 | 11011101 |
Octal | 333 | 166 | 335 |
Examples of css and html codes for elements with #DB76DD color. Also use rgb(219,118,221) instead hex code.
.myTextColor { color: #DB76DD; }
<p style="color:#DB76DD">This sample text font color is #DB76DD.</p>
This text font color is #DB76DD.
.myBgColor { background-color: #DB76DD; }
<div style="background-color:#DB76DD">Inner text</div>
This div background color is #DB76DD.
.myBorderColor { border: 1px solid #DB76DD; }
<div style="border:3px solid #DB76DD">Div</div>
This div border color is #DB76DD.
.myOpacity80 { color: #DB76DD; opacity: 0.8; }
<p style="color:#DB76DD;opacity:0.8;">80%</p>
Text with #DB76DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DB76DD;}
<p style="text-shadow: 3px 3px 1px #DB76DD">Text here.</p>
This text has shadow with #DB76DD color.
.textShadow {text-shadow: 3px 3px 1px #DB76DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DB76DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DB76DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DB76DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DB76DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DB76DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DB76DD; -webkit-box-shadow: 1px 1px 3px 2px #DB76DD; box-shadow: 1px 1px 3px 2px #DB76DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DB76DD; -webkit-box-shadow: 1px 1px 3px 2px #DB76DD; box-shadow:1px 1px 3px 2px #DB76DD;">
Div content here</div>
This text has color #DB76DD on black background.
This text has color #DB76DD on white background.
This text has black color on #DB76DD background.
This text has white color on #DB76DD background.