HEX: #E3A6DB
RGB: (227,166,219)
#E3A6DB contains mainly red and blue colors. Web safe color of #E3A6DB is #CC99CC (or #C9C).
#E3A6DB color RGB value is (227,166,219).
RGB: (227,166,219) (89%,65%,86%)
R 227 of 255 = 89%
G 166 of 255 = 65%
B 219 of 255 = 86%
R + G + B ~ 80%. #E3A6DB is quite light color.
R + G + B =
227 + 166 + 219 = 612 (100%)
R 227 of 612 ~ 37.09%
G 166 of 612 ~ 27.12%
B 219 of 612 ~ 35.78%
#E3A6DB color CMYK value is (0,27,4,11).
CMYK: (0,27,4,11) C0M27Y4K11 (0%,27%,4%,11%) (0.00/0.27/0.04/0.11)
E3 | A6 | DB | |
---|---|---|---|
RGB | 227 | 166 | 219 |
HSL | 308° | 52.14% | 77.06% |
HSB/HSV | 308° | 26.87% | 89.02% |
CMYK | 0.00% | 26.87% | 3.52% |
10.98% |
HEX | E3 | A6 | DB |
Decimal | 227 | 166 | 219 |
Binary | 11100011 | 10100110 | 11011011 |
Octal | 343 | 246 | 333 |
Examples of css and html codes for elements with #E3A6DB color. Also use rgb(227,166,219) instead hex code.
.myTextColor { color: #E3A6DB; }
<p style="color:#E3A6DB">This sample text font color is #E3A6DB.</p>
This text font color is #E3A6DB.
.myBgColor { background-color: #E3A6DB; }
<div style="background-color:#E3A6DB">Inner text</div>
This div background color is #E3A6DB.
.myBorderColor { border: 1px solid #E3A6DB; }
<div style="border:3px solid #E3A6DB">Div</div>
This div border color is #E3A6DB.
.myOpacity80 { color: #E3A6DB; opacity: 0.8; }
<p style="color:#E3A6DB;opacity:0.8;">80%</p>
Text with #E3A6DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3A6DB;}
<p style="text-shadow: 3px 3px 1px #E3A6DB">Text here.</p>
This text has shadow with #E3A6DB color.
.textShadow {text-shadow: 3px 3px 1px #E3A6DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3A6DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3A6DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3A6DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3A6DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3A6DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3A6DB; -webkit-box-shadow: 1px 1px 3px 2px #E3A6DB; box-shadow: 1px 1px 3px 2px #E3A6DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3A6DB; -webkit-box-shadow: 1px 1px 3px 2px #E3A6DB; box-shadow:1px 1px 3px 2px #E3A6DB;">
Div content here</div>
This text has color #E3A6DB on black background.
This text has color #E3A6DB on white background.
This text has black color on #E3A6DB background.
This text has white color on #E3A6DB background.