HEX: #E4CCFA
RGB: (228,204,250)
#E4CCFA contains red, green and blue colors in about the same proportion. Web safe color of #E4CCFA is #CCCCFF (or #CCF).
#E4CCFA color RGB value is (228,204,250).
RGB: (228,204,250) (89%,80%,98%)
R 228 of 255 = 89%
G 204 of 255 = 80%
B 250 of 255 = 98%
R + G + B ~ 89%. #E4CCFA is light color.
R + G + B =
228 + 204 + 250 = 682 (100%)
R 228 of 682 ~ 33.43%
G 204 of 682 ~ 29.91%
B 250 of 682 ~ 36.66%
#E4CCFA color CMYK value is (9,18,0,2).
CMYK: (9,18,0,2) C9M18Y0K2 (9%,18%,0%,2%) (0.09/0.18/0.00/0.02)
E4 | CC | FA | |
---|---|---|---|
RGB | 228 | 204 | 250 |
HSL | 271° | 82.14% | 89.02% |
HSB/HSV | 271° | 18.40% | 98.04% |
CMYK | 8.80% | 18.40% | 0.00% |
1.96% |
HEX | E4 | CC | FA |
Decimal | 228 | 204 | 250 |
Binary | 11100100 | 11001100 | 11111010 |
Octal | 344 | 314 | 372 |
Examples of css and html codes for elements with #E4CCFA color. Also use rgb(228,204,250) instead hex code.
.myTextColor { color: #E4CCFA; }
<p style="color:#E4CCFA">This sample text font color is #E4CCFA.</p>
This text font color is #E4CCFA.
.myBgColor { background-color: #E4CCFA; }
<div style="background-color:#E4CCFA">Inner text</div>
This div background color is #E4CCFA.
.myBorderColor { border: 1px solid #E4CCFA; }
<div style="border:3px solid #E4CCFA">Div</div>
This div border color is #E4CCFA.
.myOpacity80 { color: #E4CCFA; opacity: 0.8; }
<p style="color:#E4CCFA;opacity:0.8;">80%</p>
Text with #E4CCFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4CCFA;}
<p style="text-shadow: 3px 3px 1px #E4CCFA">Text here.</p>
This text has shadow with #E4CCFA color.
.textShadow {text-shadow: 3px 3px 1px #E4CCFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4CCFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4CCFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4CCFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4CCFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4CCFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4CCFA; -webkit-box-shadow: 1px 1px 3px 2px #E4CCFA; box-shadow: 1px 1px 3px 2px #E4CCFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4CCFA; -webkit-box-shadow: 1px 1px 3px 2px #E4CCFA; box-shadow:1px 1px 3px 2px #E4CCFA;">
Div content here</div>
This text has color #E4CCFA on black background.
This text has color #E4CCFA on white background.
This text has black color on #E4CCFA background.
This text has white color on #E4CCFA background.