HEX: #E7C0FA
RGB: (231,192,250)
#E7C0FA contains red, green and blue colors in about the same proportion. Web safe color of #E7C0FA is #FFCCFF (or #FCF).
#E7C0FA color RGB value is (231,192,250).
RGB: (231,192,250) (91%,75%,98%)
R 231 of 255 = 91%
G 192 of 255 = 75%
B 250 of 255 = 98%
R + G + B ~ 88%. #E7C0FA is light color.
R + G + B =
231 + 192 + 250 = 673 (100%)
R 231 of 673 ~ 34.32%
G 192 of 673 ~ 28.53%
B 250 of 673 ~ 37.15%
#E7C0FA color CMYK value is (8,23,0,2).
CMYK: (8,23,0,2) C8M23Y0K2 (8%,23%,0%,2%) (0.08/0.23/0.00/0.02)
E7 | C0 | FA | |
---|---|---|---|
RGB | 231 | 192 | 250 |
HSL | 280° | 85.29% | 86.67% |
HSB/HSV | 280° | 23.20% | 98.04% |
CMYK | 7.60% | 23.20% | 0.00% |
1.96% |
HEX | E7 | C0 | FA |
Decimal | 231 | 192 | 250 |
Binary | 11100111 | 11000000 | 11111010 |
Octal | 347 | 300 | 372 |
Examples of css and html codes for elements with #E7C0FA color. Also use rgb(231,192,250) instead hex code.
.myTextColor { color: #E7C0FA; }
<p style="color:#E7C0FA">This sample text font color is #E7C0FA.</p>
This text font color is #E7C0FA.
.myBgColor { background-color: #E7C0FA; }
<div style="background-color:#E7C0FA">Inner text</div>
This div background color is #E7C0FA.
.myBorderColor { border: 1px solid #E7C0FA; }
<div style="border:3px solid #E7C0FA">Div</div>
This div border color is #E7C0FA.
.myOpacity80 { color: #E7C0FA; opacity: 0.8; }
<p style="color:#E7C0FA;opacity:0.8;">80%</p>
Text with #E7C0FA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7C0FA;}
<p style="text-shadow: 3px 3px 1px #E7C0FA">Text here.</p>
This text has shadow with #E7C0FA color.
.textShadow {text-shadow: 3px 3px 1px #E7C0FA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7C0FA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7C0FA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7C0FA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7C0FA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7C0FA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7C0FA; -webkit-box-shadow: 1px 1px 3px 2px #E7C0FA; box-shadow: 1px 1px 3px 2px #E7C0FA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7C0FA; -webkit-box-shadow: 1px 1px 3px 2px #E7C0FA; box-shadow:1px 1px 3px 2px #E7C0FA;">
Div content here</div>
This text has color #E7C0FA on black background.
This text has color #E7C0FA on white background.
This text has black color on #E7C0FA background.
This text has white color on #E7C0FA background.