HEX: #E7CBEC
RGB: (231,203,236)
#E7CBEC contains red, green and blue colors in about the same proportion. Web safe color of #E7CBEC is #FFCCFF (or #FCF).
#E7CBEC color RGB value is (231,203,236).
RGB: (231,203,236) (91%,80%,93%)
R 231 of 255 = 91%
G 203 of 255 = 80%
B 236 of 255 = 93%
R + G + B ~ 88%. #E7CBEC is light color.
R + G + B =
231 + 203 + 236 = 670 (100%)
R 231 of 670 ~ 34.48%
G 203 of 670 ~ 30.3%
B 236 of 670 ~ 35.22%
#E7CBEC color CMYK value is (2,14,0,7).
CMYK: (2,14,0,7) C2M14Y0K7 (2%,14%,0%,7%) (0.02/0.14/0.00/0.07)
E7 | CB | EC | |
---|---|---|---|
RGB | 231 | 203 | 236 |
HSL | 291° | 46.48% | 86.08% |
HSB/HSV | 291° | 13.98% | 92.55% |
CMYK | 2.12% | 13.98% | 0.00% |
7.45% |
HEX | E7 | CB | EC |
Decimal | 231 | 203 | 236 |
Binary | 11100111 | 11001011 | 11101100 |
Octal | 347 | 313 | 354 |
Examples of css and html codes for elements with #E7CBEC color. Also use rgb(231,203,236) instead hex code.
.myTextColor { color: #E7CBEC; }
<p style="color:#E7CBEC">This sample text font color is #E7CBEC.</p>
This text font color is #E7CBEC.
.myBgColor { background-color: #E7CBEC; }
<div style="background-color:#E7CBEC">Inner text</div>
This div background color is #E7CBEC.
.myBorderColor { border: 1px solid #E7CBEC; }
<div style="border:3px solid #E7CBEC">Div</div>
This div border color is #E7CBEC.
.myOpacity80 { color: #E7CBEC; opacity: 0.8; }
<p style="color:#E7CBEC;opacity:0.8;">80%</p>
Text with #E7CBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7CBEC;}
<p style="text-shadow: 3px 3px 1px #E7CBEC">Text here.</p>
This text has shadow with #E7CBEC color.
.textShadow {text-shadow: 3px 3px 1px #E7CBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7CBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7CBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7CBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7CBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7CBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7CBEC; -webkit-box-shadow: 1px 1px 3px 2px #E7CBEC; box-shadow: 1px 1px 3px 2px #E7CBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7CBEC; -webkit-box-shadow: 1px 1px 3px 2px #E7CBEC; box-shadow:1px 1px 3px 2px #E7CBEC;">
Div content here</div>
This text has color #E7CBEC on black background.
This text has color #E7CBEC on white background.
This text has black color on #E7CBEC background.
This text has white color on #E7CBEC background.