HEX: #E1C3EB
RGB: (225,195,235)
#E1C3EB contains red, green and blue colors in about the same proportion. Web safe color of #E1C3EB is #CCCCFF (or #CCF).
#E1C3EB color RGB value is (225,195,235).
RGB: (225,195,235) (88%,76%,92%)
R 225 of 255 = 88%
G 195 of 255 = 76%
B 235 of 255 = 92%
R + G + B ~ 85%. #E1C3EB is quite light color.
R + G + B =
225 + 195 + 235 = 655 (100%)
R 225 of 655 ~ 34.35%
G 195 of 655 ~ 29.77%
B 235 of 655 ~ 35.88%
#E1C3EB color CMYK value is (4,17,0,8).
CMYK: (4,17,0,8) C4M17Y0K8 (4%,17%,0%,8%) (0.04/0.17/0.00/0.08)
E1 | C3 | EB | |
---|---|---|---|
RGB | 225 | 195 | 235 |
HSL | 285° | 50.00% | 84.31% |
HSB/HSV | 285° | 17.02% | 92.16% |
CMYK | 4.26% | 17.02% | 0.00% |
7.84% |
HEX | E1 | C3 | EB |
Decimal | 225 | 195 | 235 |
Binary | 11100001 | 11000011 | 11101011 |
Octal | 341 | 303 | 353 |
Examples of css and html codes for elements with #E1C3EB color. Also use rgb(225,195,235) instead hex code.
.myTextColor { color: #E1C3EB; }
<p style="color:#E1C3EB">This sample text font color is #E1C3EB.</p>
This text font color is #E1C3EB.
.myBgColor { background-color: #E1C3EB; }
<div style="background-color:#E1C3EB">Inner text</div>
This div background color is #E1C3EB.
.myBorderColor { border: 1px solid #E1C3EB; }
<div style="border:3px solid #E1C3EB">Div</div>
This div border color is #E1C3EB.
.myOpacity80 { color: #E1C3EB; opacity: 0.8; }
<p style="color:#E1C3EB;opacity:0.8;">80%</p>
Text with #E1C3EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1C3EB;}
<p style="text-shadow: 3px 3px 1px #E1C3EB">Text here.</p>
This text has shadow with #E1C3EB color.
.textShadow {text-shadow: 3px 3px 1px #E1C3EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1C3EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1C3EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1C3EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1C3EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1C3EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1C3EB; -webkit-box-shadow: 1px 1px 3px 2px #E1C3EB; box-shadow: 1px 1px 3px 2px #E1C3EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1C3EB; -webkit-box-shadow: 1px 1px 3px 2px #E1C3EB; box-shadow:1px 1px 3px 2px #E1C3EB;">
Div content here</div>
This text has color #E1C3EB on black background.
This text has color #E1C3EB on white background.
This text has black color on #E1C3EB background.
This text has white color on #E1C3EB background.