HEX: #E2B5DD
RGB: (226,181,221)
#E2B5DD contains red, green and blue colors in about the same proportion. Web safe color of #E2B5DD is #CCCCCC (or #CCC).
#E2B5DD color RGB value is (226,181,221).
RGB: (226,181,221) (89%,71%,87%)
R 226 of 255 = 89%
G 181 of 255 = 71%
B 221 of 255 = 87%
R + G + B ~ 82%. #E2B5DD is quite light color.
R + G + B =
226 + 181 + 221 = 628 (100%)
R 226 of 628 ~ 35.99%
G 181 of 628 ~ 28.82%
B 221 of 628 ~ 35.19%
#E2B5DD color CMYK value is (0,20,2,11).
CMYK: (0,20,2,11) C0M20Y2K11 (0%,20%,2%,11%) (0.00/0.20/0.02/0.11)
E2 | B5 | DD | |
---|---|---|---|
RGB | 226 | 181 | 221 |
HSL | 307° | 43.69% | 79.80% |
HSB/HSV | 307° | 19.91% | 88.63% |
CMYK | 0.00% | 19.91% | 2.21% |
11.37% |
HEX | E2 | B5 | DD |
Decimal | 226 | 181 | 221 |
Binary | 11100010 | 10110101 | 11011101 |
Octal | 342 | 265 | 335 |
Examples of css and html codes for elements with #E2B5DD color. Also use rgb(226,181,221) instead hex code.
.myTextColor { color: #E2B5DD; }
<p style="color:#E2B5DD">This sample text font color is #E2B5DD.</p>
This text font color is #E2B5DD.
.myBgColor { background-color: #E2B5DD; }
<div style="background-color:#E2B5DD">Inner text</div>
This div background color is #E2B5DD.
.myBorderColor { border: 1px solid #E2B5DD; }
<div style="border:3px solid #E2B5DD">Div</div>
This div border color is #E2B5DD.
.myOpacity80 { color: #E2B5DD; opacity: 0.8; }
<p style="color:#E2B5DD;opacity:0.8;">80%</p>
Text with #E2B5DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2B5DD;}
<p style="text-shadow: 3px 3px 1px #E2B5DD">Text here.</p>
This text has shadow with #E2B5DD color.
.textShadow {text-shadow: 3px 3px 1px #E2B5DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2B5DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2B5DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2B5DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2B5DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2B5DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2B5DD; -webkit-box-shadow: 1px 1px 3px 2px #E2B5DD; box-shadow: 1px 1px 3px 2px #E2B5DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2B5DD; -webkit-box-shadow: 1px 1px 3px 2px #E2B5DD; box-shadow:1px 1px 3px 2px #E2B5DD;">
Div content here</div>
This text has color #E2B5DD on black background.
This text has color #E2B5DD on white background.
This text has black color on #E2B5DD background.
This text has white color on #E2B5DD background.