HEX: #D59DDC
RGB: (213,157,220)
#D59DDC contains mainly red and blue colors. Web safe color of #D59DDC is #CC99CC (or #C9C).
#D59DDC color RGB value is (213,157,220).
RGB: (213,157,220) (84%,62%,86%)
R 213 of 255 = 84%
G 157 of 255 = 62%
B 220 of 255 = 86%
R + G + B ~ 77%. #D59DDC is quite light color.
R + G + B =
213 + 157 + 220 = 590 (100%)
R 213 of 590 ~ 36.1%
G 157 of 590 ~ 26.61%
B 220 of 590 ~ 37.29%
#D59DDC color CMYK value is (3,29,0,14).
CMYK: (3,29,0,14) C3M29Y0K14 (3%,29%,0%,14%) (0.03/0.29/0.00/0.14)
D5 | 9D | DC | |
---|---|---|---|
RGB | 213 | 157 | 220 |
HSL | 293° | 47.37% | 73.92% |
HSB/HSV | 293° | 28.64% | 86.27% |
CMYK | 3.18% | 28.64% | 0.00% |
13.73% |
HEX | D5 | 9D | DC |
Decimal | 213 | 157 | 220 |
Binary | 11010101 | 10011101 | 11011100 |
Octal | 325 | 235 | 334 |
Examples of css and html codes for elements with #D59DDC color. Also use rgb(213,157,220) instead hex code.
.myTextColor { color: #D59DDC; }
<p style="color:#D59DDC">This sample text font color is #D59DDC.</p>
This text font color is #D59DDC.
.myBgColor { background-color: #D59DDC; }
<div style="background-color:#D59DDC">Inner text</div>
This div background color is #D59DDC.
.myBorderColor { border: 1px solid #D59DDC; }
<div style="border:3px solid #D59DDC">Div</div>
This div border color is #D59DDC.
.myOpacity80 { color: #D59DDC; opacity: 0.8; }
<p style="color:#D59DDC;opacity:0.8;">80%</p>
Text with #D59DDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D59DDC;}
<p style="text-shadow: 3px 3px 1px #D59DDC">Text here.</p>
This text has shadow with #D59DDC color.
.textShadow {text-shadow: 3px 3px 1px #D59DDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D59DDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D59DDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D59DDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D59DDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D59DDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D59DDC; -webkit-box-shadow: 1px 1px 3px 2px #D59DDC; box-shadow: 1px 1px 3px 2px #D59DDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D59DDC; -webkit-box-shadow: 1px 1px 3px 2px #D59DDC; box-shadow:1px 1px 3px 2px #D59DDC;">
Div content here</div>
This text has color #D59DDC on black background.
This text has color #D59DDC on white background.
This text has black color on #D59DDC background.
This text has white color on #D59DDC background.