HEX: #E1B3CE
RGB: (225,179,206)
#E1B3CE contains red, green and blue colors in about the same proportion. Web safe color of #E1B3CE is #CC99CC (or #C9C).
#E1B3CE color RGB value is (225,179,206).
RGB: (225,179,206) (88%,70%,81%)
R 225 of 255 = 88%
G 179 of 255 = 70%
B 206 of 255 = 81%
R + G + B ~ 80%. #E1B3CE is quite light color.
R + G + B =
225 + 179 + 206 = 610 (100%)
R 225 of 610 ~ 36.89%
G 179 of 610 ~ 29.34%
B 206 of 610 ~ 33.77%
#E1B3CE color CMYK value is (0,20,8,12).
CMYK: (0,20,8,12) C0M20Y8K12 (0%,20%,8%,12%) (0.00/0.20/0.08/0.12)
E1 | B3 | CE | |
---|---|---|---|
RGB | 225 | 179 | 206 |
HSL | 325° | 43.40% | 79.22% |
HSB/HSV | 325° | 20.44% | 88.24% |
CMYK | 0.00% | 20.44% | 8.44% |
11.76% |
HEX | E1 | B3 | CE |
Decimal | 225 | 179 | 206 |
Binary | 11100001 | 10110011 | 11001110 |
Octal | 341 | 263 | 316 |
Examples of css and html codes for elements with #E1B3CE color. Also use rgb(225,179,206) instead hex code.
.myTextColor { color: #E1B3CE; }
<p style="color:#E1B3CE">This sample text font color is #E1B3CE.</p>
This text font color is #E1B3CE.
.myBgColor { background-color: #E1B3CE; }
<div style="background-color:#E1B3CE">Inner text</div>
This div background color is #E1B3CE.
.myBorderColor { border: 1px solid #E1B3CE; }
<div style="border:3px solid #E1B3CE">Div</div>
This div border color is #E1B3CE.
.myOpacity80 { color: #E1B3CE; opacity: 0.8; }
<p style="color:#E1B3CE;opacity:0.8;">80%</p>
Text with #E1B3CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1B3CE;}
<p style="text-shadow: 3px 3px 1px #E1B3CE">Text here.</p>
This text has shadow with #E1B3CE color.
.textShadow {text-shadow: 3px 3px 1px #E1B3CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1B3CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1B3CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1B3CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1B3CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1B3CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1B3CE; -webkit-box-shadow: 1px 1px 3px 2px #E1B3CE; box-shadow: 1px 1px 3px 2px #E1B3CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1B3CE; -webkit-box-shadow: 1px 1px 3px 2px #E1B3CE; box-shadow:1px 1px 3px 2px #E1B3CE;">
Div content here</div>
This text has color #E1B3CE on black background.
This text has color #E1B3CE on white background.
This text has black color on #E1B3CE background.
This text has white color on #E1B3CE background.