HEX: #DDA0DD
RGB: (221,160,221)
Color name is Plum. #DDA0DD contains mainly red and blue colors. Web safe color of #DDA0DD is #CC99CC (or #C9C).
#DDA0DD color RGB value is (221,160,221).
RGB: (221,160,221) (87%,63%,87%)
R 221 of 255 = 87%
G 160 of 255 = 63%
B 221 of 255 = 87%
R + G + B ~ 79%. #DDA0DD is quite light color.
R + G + B =
221 + 160 + 221 = 602 (100%)
R 221 of 602 ~ 36.71%
G 160 of 602 ~ 26.58%
B 221 of 602 ~ 36.71%
#DDA0DD color CMYK value is (0,28,0,13).
CMYK: (0,28,0,13) C0M28Y0K13 (0%,28%,0%,13%) (0.00/0.28/0.00/0.13)
DD | A0 | DD | |
---|---|---|---|
RGB | 221 | 160 | 221 |
HSL | 300° | 47.29% | 74.71% |
HSB/HSV | 300° | 27.60% | 86.67% |
CMYK | 0.00% | 27.60% | 0.00% |
13.33% |
HEX | DD | A0 | DD |
Decimal | 221 | 160 | 221 |
Binary | 11011101 | 10100000 | 11011101 |
Octal | 335 | 240 | 335 |
Examples of css and html codes for elements with #DDA0DD color. Also use rgb(221,160,221) instead hex code.
.myTextColor { color: #DDA0DD; }
<p style="color:#DDA0DD">This sample text font color is #DDA0DD.</p>
This text font color is #DDA0DD.
.myBgColor { background-color: #DDA0DD; }
<div style="background-color:#DDA0DD">Inner text</div>
This div background color is #DDA0DD.
.myBorderColor { border: 1px solid #DDA0DD; }
<div style="border:3px solid #DDA0DD">Div</div>
This div border color is #DDA0DD.
.myOpacity80 { color: #DDA0DD; opacity: 0.8; }
<p style="color:#DDA0DD;opacity:0.8;">80%</p>
Text with #DDA0DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDA0DD;}
<p style="text-shadow: 3px 3px 1px #DDA0DD">Text here.</p>
This text has shadow with #DDA0DD color.
.textShadow {text-shadow: 3px 3px 1px #DDA0DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDA0DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDA0DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDA0DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDA0DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDA0DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDA0DD; -webkit-box-shadow: 1px 1px 3px 2px #DDA0DD; box-shadow: 1px 1px 3px 2px #DDA0DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDA0DD; -webkit-box-shadow: 1px 1px 3px 2px #DDA0DD; box-shadow:1px 1px 3px 2px #DDA0DD;">
Div content here</div>
This text has color #DDA0DD on black background.
This text has color #DDA0DD on white background.
This text has black color on #DDA0DD background.
This text has white color on #DDA0DD background.