HEX: #D5A0EE
RGB: (213,160,238)
#D5A0EE contains mainly red and blue colors. Web safe color of #D5A0EE is #CC99FF (or #C9F).
#D5A0EE color RGB value is (213,160,238).
RGB: (213,160,238) (84%,63%,93%)
R 213 of 255 = 84%
G 160 of 255 = 63%
B 238 of 255 = 93%
R + G + B ~ 80%. #D5A0EE is quite light color.
R + G + B =
213 + 160 + 238 = 611 (100%)
R 213 of 611 ~ 34.86%
G 160 of 611 ~ 26.19%
B 238 of 611 ~ 38.95%
#D5A0EE color CMYK value is (11,33,0,7).
CMYK: (11,33,0,7) C11M33Y0K7 (11%,33%,0%,7%) (0.11/0.33/0.00/0.07)
D5 | A0 | EE | |
---|---|---|---|
RGB | 213 | 160 | 238 |
HSL | 281° | 69.64% | 78.04% |
HSB/HSV | 281° | 32.77% | 93.33% |
CMYK | 10.50% | 32.77% | 0.00% |
6.67% |
HEX | D5 | A0 | EE |
Decimal | 213 | 160 | 238 |
Binary | 11010101 | 10100000 | 11101110 |
Octal | 325 | 240 | 356 |
Examples of css and html codes for elements with #D5A0EE color. Also use rgb(213,160,238) instead hex code.
.myTextColor { color: #D5A0EE; }
<p style="color:#D5A0EE">This sample text font color is #D5A0EE.</p>
This text font color is #D5A0EE.
.myBgColor { background-color: #D5A0EE; }
<div style="background-color:#D5A0EE">Inner text</div>
This div background color is #D5A0EE.
.myBorderColor { border: 1px solid #D5A0EE; }
<div style="border:3px solid #D5A0EE">Div</div>
This div border color is #D5A0EE.
.myOpacity80 { color: #D5A0EE; opacity: 0.8; }
<p style="color:#D5A0EE;opacity:0.8;">80%</p>
Text with #D5A0EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5A0EE;}
<p style="text-shadow: 3px 3px 1px #D5A0EE">Text here.</p>
This text has shadow with #D5A0EE color.
.textShadow {text-shadow: 3px 3px 1px #D5A0EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5A0EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5A0EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5A0EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5A0EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5A0EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5A0EE; -webkit-box-shadow: 1px 1px 3px 2px #D5A0EE; box-shadow: 1px 1px 3px 2px #D5A0EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5A0EE; -webkit-box-shadow: 1px 1px 3px 2px #D5A0EE; box-shadow:1px 1px 3px 2px #D5A0EE;">
Div content here</div>
This text has color #D5A0EE on black background.
This text has color #D5A0EE on white background.
This text has black color on #D5A0EE background.
This text has white color on #D5A0EE background.