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