HEX: #E7CFFB
RGB: (231,207,251)
#E7CFFB contains red, green and blue colors in about the same proportion. Web safe color of #E7CFFB is #FFCCFF (or #FCF).
#E7CFFB color RGB value is (231,207,251).
RGB: (231,207,251) (91%,81%,98%)
R 231 of 255 = 91%
G 207 of 255 = 81%
B 251 of 255 = 98%
R + G + B ~ 90%. #E7CFFB is light color.
R + G + B =
231 + 207 + 251 = 689 (100%)
R 231 of 689 ~ 33.53%
G 207 of 689 ~ 30.04%
B 251 of 689 ~ 36.43%
#E7CFFB color CMYK value is (8,18,0,2).
CMYK: (8,18,0,2) C8M18Y0K2 (8%,18%,0%,2%) (0.08/0.18/0.00/0.02)
E7 | CF | FB | |
---|---|---|---|
RGB | 231 | 207 | 251 |
HSL | 273° | 84.62% | 89.80% |
HSB/HSV | 273° | 17.53% | 98.43% |
CMYK | 7.97% | 17.53% | 0.00% |
1.57% |
HEX | E7 | CF | FB |
Decimal | 231 | 207 | 251 |
Binary | 11100111 | 11001111 | 11111011 |
Octal | 347 | 317 | 373 |
Examples of css and html codes for elements with #E7CFFB color. Also use rgb(231,207,251) instead hex code.
.myTextColor { color: #E7CFFB; }
<p style="color:#E7CFFB">This sample text font color is #E7CFFB.</p>
This text font color is #E7CFFB.
.myBgColor { background-color: #E7CFFB; }
<div style="background-color:#E7CFFB">Inner text</div>
This div background color is #E7CFFB.
.myBorderColor { border: 1px solid #E7CFFB; }
<div style="border:3px solid #E7CFFB">Div</div>
This div border color is #E7CFFB.
.myOpacity80 { color: #E7CFFB; opacity: 0.8; }
<p style="color:#E7CFFB;opacity:0.8;">80%</p>
Text with #E7CFFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7CFFB;}
<p style="text-shadow: 3px 3px 1px #E7CFFB">Text here.</p>
This text has shadow with #E7CFFB color.
.textShadow {text-shadow: 3px 3px 1px #E7CFFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7CFFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7CFFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7CFFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7CFFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7CFFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7CFFB; -webkit-box-shadow: 1px 1px 3px 2px #E7CFFB; box-shadow: 1px 1px 3px 2px #E7CFFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7CFFB; -webkit-box-shadow: 1px 1px 3px 2px #E7CFFB; box-shadow:1px 1px 3px 2px #E7CFFB;">
Div content here</div>
This text has color #E7CFFB on black background.
This text has color #E7CFFB on white background.
This text has black color on #E7CFFB background.
This text has white color on #E7CFFB background.