HEX: #D588DA
RGB: (213,136,218)
#D588DA contains mainly red and blue colors. Web safe color of #D588DA is #CC99CC (or #C9C).
#D588DA color RGB value is (213,136,218).
RGB: (213,136,218) (84%,53%,85%)
R 213 of 255 = 84%
G 136 of 255 = 53%
B 218 of 255 = 85%
R + G + B ~ 74%. #D588DA is quite light color.
R + G + B =
213 + 136 + 218 = 567 (100%)
R 213 of 567 ~ 37.57%
G 136 of 567 ~ 23.99%
B 218 of 567 ~ 38.45%
#D588DA color CMYK value is (2,38,0,15).
CMYK: (2,38,0,15) C2M38Y0K15 (2%,38%,0%,15%) (0.02/0.38/0.00/0.15)
D5 | 88 | DA | |
---|---|---|---|
RGB | 213 | 136 | 218 |
HSL | 296° | 52.56% | 69.41% |
HSB/HSV | 296° | 37.61% | 85.49% |
CMYK | 2.29% | 37.61% | 0.00% |
14.51% |
HEX | D5 | 88 | DA |
Decimal | 213 | 136 | 218 |
Binary | 11010101 | 10001000 | 11011010 |
Octal | 325 | 210 | 332 |
Examples of css and html codes for elements with #D588DA color. Also use rgb(213,136,218) instead hex code.
.myTextColor { color: #D588DA; }
<p style="color:#D588DA">This sample text font color is #D588DA.</p>
This text font color is #D588DA.
.myBgColor { background-color: #D588DA; }
<div style="background-color:#D588DA">Inner text</div>
This div background color is #D588DA.
.myBorderColor { border: 1px solid #D588DA; }
<div style="border:3px solid #D588DA">Div</div>
This div border color is #D588DA.
.myOpacity80 { color: #D588DA; opacity: 0.8; }
<p style="color:#D588DA;opacity:0.8;">80%</p>
Text with #D588DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D588DA;}
<p style="text-shadow: 3px 3px 1px #D588DA">Text here.</p>
This text has shadow with #D588DA color.
.textShadow {text-shadow: 3px 3px 1px #D588DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D588DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D588DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D588DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D588DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D588DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D588DA; -webkit-box-shadow: 1px 1px 3px 2px #D588DA; box-shadow: 1px 1px 3px 2px #D588DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D588DA; -webkit-box-shadow: 1px 1px 3px 2px #D588DA; box-shadow:1px 1px 3px 2px #D588DA;">
Div content here</div>
This text has color #D588DA on black background.
This text has color #D588DA on white background.
This text has black color on #D588DA background.
This text has white color on #D588DA background.