HEX: #E2CCFE
RGB: (226,204,254)
#E2CCFE contains red, green and blue colors in about the same proportion. Web safe color of #E2CCFE is #CCCCFF (or #CCF).
#E2CCFE color RGB value is (226,204,254).
RGB: (226,204,254) (89%,80%,100%)
R 226 of 255 = 89%
G 204 of 255 = 80%
B 254 of 255 = 100%
R + G + B ~ 90%. #E2CCFE is light color.
R + G + B =
226 + 204 + 254 = 684 (100%)
R 226 of 684 ~ 33.04%
G 204 of 684 ~ 29.82%
B 254 of 684 ~ 37.13%
#E2CCFE color CMYK value is (11,20,0,0).
CMYK: (11,20,0,0) C11M20Y0K0 (11%,20%,0%,0%) (0.11/0.20/0.00/0.00)
E2 | CC | FE | |
---|---|---|---|
RGB | 226 | 204 | 254 |
HSL | 266° | 96.15% | 89.80% |
HSB/HSV | 266° | 19.69% | 99.61% |
CMYK | 11.02% | 19.69% | 0.00% |
0.39% |
HEX | E2 | CC | FE |
Decimal | 226 | 204 | 254 |
Binary | 11100010 | 11001100 | 11111110 |
Octal | 342 | 314 | 376 |
Examples of css and html codes for elements with #E2CCFE color. Also use rgb(226,204,254) instead hex code.
.myTextColor { color: #E2CCFE; }
<p style="color:#E2CCFE">This sample text font color is #E2CCFE.</p>
This text font color is #E2CCFE.
.myBgColor { background-color: #E2CCFE; }
<div style="background-color:#E2CCFE">Inner text</div>
This div background color is #E2CCFE.
.myBorderColor { border: 1px solid #E2CCFE; }
<div style="border:3px solid #E2CCFE">Div</div>
This div border color is #E2CCFE.
.myOpacity80 { color: #E2CCFE; opacity: 0.8; }
<p style="color:#E2CCFE;opacity:0.8;">80%</p>
Text with #E2CCFE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2CCFE;}
<p style="text-shadow: 3px 3px 1px #E2CCFE">Text here.</p>
This text has shadow with #E2CCFE color.
.textShadow {text-shadow: 3px 3px 1px #E2CCFE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2CCFE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2CCFE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2CCFE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2CCFE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2CCFE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2CCFE; -webkit-box-shadow: 1px 1px 3px 2px #E2CCFE; box-shadow: 1px 1px 3px 2px #E2CCFE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2CCFE; -webkit-box-shadow: 1px 1px 3px 2px #E2CCFE; box-shadow:1px 1px 3px 2px #E2CCFE;">
Div content here</div>
This text has color #E2CCFE on black background.
This text has color #E2CCFE on white background.
This text has black color on #E2CCFE background.
This text has white color on #E2CCFE background.