HEX: #E6C4EF
RGB: (230,196,239)
#E6C4EF contains red, green and blue colors in about the same proportion. Web safe color of #E6C4EF is #CCCCFF (or #CCF).
#E6C4EF color RGB value is (230,196,239).
RGB: (230,196,239) (90%,77%,94%)
R 230 of 255 = 90%
G 196 of 255 = 77%
B 239 of 255 = 94%
R + G + B ~ 87%. #E6C4EF is light color.
R + G + B =
230 + 196 + 239 = 665 (100%)
R 230 of 665 ~ 34.59%
G 196 of 665 ~ 29.47%
B 239 of 665 ~ 35.94%
#E6C4EF color CMYK value is (4,18,0,6).
CMYK: (4,18,0,6) C4M18Y0K6 (4%,18%,0%,6%) (0.04/0.18/0.00/0.06)
E6 | C4 | EF | |
---|---|---|---|
RGB | 230 | 196 | 239 |
HSL | 287° | 57.33% | 85.29% |
HSB/HSV | 287° | 17.99% | 93.73% |
CMYK | 3.77% | 17.99% | 0.00% |
6.27% |
HEX | E6 | C4 | EF |
Decimal | 230 | 196 | 239 |
Binary | 11100110 | 11000100 | 11101111 |
Octal | 346 | 304 | 357 |
Examples of css and html codes for elements with #E6C4EF color. Also use rgb(230,196,239) instead hex code.
.myTextColor { color: #E6C4EF; }
<p style="color:#E6C4EF">This sample text font color is #E6C4EF.</p>
This text font color is #E6C4EF.
.myBgColor { background-color: #E6C4EF; }
<div style="background-color:#E6C4EF">Inner text</div>
This div background color is #E6C4EF.
.myBorderColor { border: 1px solid #E6C4EF; }
<div style="border:3px solid #E6C4EF">Div</div>
This div border color is #E6C4EF.
.myOpacity80 { color: #E6C4EF; opacity: 0.8; }
<p style="color:#E6C4EF;opacity:0.8;">80%</p>
Text with #E6C4EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6C4EF;}
<p style="text-shadow: 3px 3px 1px #E6C4EF">Text here.</p>
This text has shadow with #E6C4EF color.
.textShadow {text-shadow: 3px 3px 1px #E6C4EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6C4EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6C4EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6C4EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6C4EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6C4EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6C4EF; -webkit-box-shadow: 1px 1px 3px 2px #E6C4EF; box-shadow: 1px 1px 3px 2px #E6C4EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6C4EF; -webkit-box-shadow: 1px 1px 3px 2px #E6C4EF; box-shadow:1px 1px 3px 2px #E6C4EF;">
Div content here</div>
This text has color #E6C4EF on black background.
This text has color #E6C4EF on white background.
This text has black color on #E6C4EF background.
This text has white color on #E6C4EF background.