HEX: #E585DB
RGB: (229,133,219)
#E585DB contains mainly red and blue colors. Web safe color of #E585DB is #CC99CC (or #C9C).
#E585DB color RGB value is (229,133,219).
RGB: (229,133,219) (90%,52%,86%)
R 229 of 255 = 90%
G 133 of 255 = 52%
B 219 of 255 = 86%
R + G + B ~ 76%. #E585DB is quite light color.
R + G + B =
229 + 133 + 219 = 581 (100%)
R 229 of 581 ~ 39.41%
G 133 of 581 ~ 22.89%
B 219 of 581 ~ 37.69%
#E585DB color CMYK value is (0,42,4,10).
CMYK: (0,42,4,10) C0M42Y4K10 (0%,42%,4%,10%) (0.00/0.42/0.04/0.10)
E5 | 85 | DB | |
---|---|---|---|
RGB | 229 | 133 | 219 |
HSL | 306° | 64.86% | 70.98% |
HSB/HSV | 306° | 41.92% | 89.80% |
CMYK | 0.00% | 41.92% | 4.37% |
10.20% |
HEX | E5 | 85 | DB |
Decimal | 229 | 133 | 219 |
Binary | 11100101 | 10000101 | 11011011 |
Octal | 345 | 205 | 333 |
Examples of css and html codes for elements with #E585DB color. Also use rgb(229,133,219) instead hex code.
.myTextColor { color: #E585DB; }
<p style="color:#E585DB">This sample text font color is #E585DB.</p>
This text font color is #E585DB.
.myBgColor { background-color: #E585DB; }
<div style="background-color:#E585DB">Inner text</div>
This div background color is #E585DB.
.myBorderColor { border: 1px solid #E585DB; }
<div style="border:3px solid #E585DB">Div</div>
This div border color is #E585DB.
.myOpacity80 { color: #E585DB; opacity: 0.8; }
<p style="color:#E585DB;opacity:0.8;">80%</p>
Text with #E585DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E585DB;}
<p style="text-shadow: 3px 3px 1px #E585DB">Text here.</p>
This text has shadow with #E585DB color.
.textShadow {text-shadow: 3px 3px 1px #E585DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E585DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E585DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E585DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E585DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E585DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E585DB; -webkit-box-shadow: 1px 1px 3px 2px #E585DB; box-shadow: 1px 1px 3px 2px #E585DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E585DB; -webkit-box-shadow: 1px 1px 3px 2px #E585DB; box-shadow:1px 1px 3px 2px #E585DB;">
Div content here</div>
This text has color #E585DB on black background.
This text has color #E585DB on white background.
This text has black color on #E585DB background.
This text has white color on #E585DB background.