HEX: #E3CEFA
RGB: (227,206,250)
#E3CEFA contains red, green and blue colors in about the same proportion. Web safe color of #E3CEFA is #CCCCFF (or #CCF).
#E3CEFA color RGB value is (227,206,250).
RGB: (227,206,250) (89%,81%,98%)
R 227 of 255 = 89%
G 206 of 255 = 81%
B 250 of 255 = 98%
R + G + B ~ 89%. #E3CEFA is light color.
R + G + B =
227 + 206 + 250 = 683 (100%)
R 227 of 683 ~ 33.24%
G 206 of 683 ~ 30.16%
B 250 of 683 ~ 36.6%
#E3CEFA 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)
E3 | CE | FA | |
---|---|---|---|
RGB | 227 | 206 | 250 |
HSL | 269° | 81.48% | 89.41% |
HSB/HSV | 269° | 17.60% | 98.04% |
CMYK | 9.20% | 17.60% | 0.00% |
1.96% |
HEX | E3 | CE | FA |
Decimal | 227 | 206 | 250 |
Binary | 11100011 | 11001110 | 11111010 |
Octal | 343 | 316 | 372 |
Examples of css and html codes for elements with #E3CEFA color. Also use rgb(227,206,250) instead hex code.
.myTextColor { color: #E3CEFA; }
<p style="color:#E3CEFA">This sample text font color is #E3CEFA.</p>
This text font color is #E3CEFA.
.myBgColor { background-color: #E3CEFA; }
<div style="background-color:#E3CEFA">Inner text</div>
This div background color is #E3CEFA.
.myBorderColor { border: 1px solid #E3CEFA; }
<div style="border:3px solid #E3CEFA">Div</div>
This div border color is #E3CEFA.
.myOpacity80 { color: #E3CEFA; opacity: 0.8; }
<p style="color:#E3CEFA;opacity:0.8;">80%</p>
Text with #E3CEFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E3CEFA;}
<p style="text-shadow: 3px 3px 1px #E3CEFA">Text here.</p>
This text has shadow with #E3CEFA color.
.textShadow {text-shadow: 3px 3px 1px #E3CEFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E3CEFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E3CEFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E3CEFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E3CEFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E3CEFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E3CEFA; -webkit-box-shadow: 1px 1px 3px 2px #E3CEFA; box-shadow: 1px 1px 3px 2px #E3CEFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E3CEFA; -webkit-box-shadow: 1px 1px 3px 2px #E3CEFA; box-shadow:1px 1px 3px 2px #E3CEFA;">
Div content here</div>
This text has color #E3CEFA on black background.
This text has color #E3CEFA on white background.
This text has black color on #E3CEFA background.
This text has white color on #E3CEFA background.