HEX: #ECE6FC
RGB: (236,230,252)
#ECE6FC contains red, green and blue colors in about the same proportion. Web safe color of #ECE6FC is #FFCCFF (or #FCF).
#ECE6FC color RGB value is (236,230,252).
RGB: (236,230,252) (93%,90%,99%)
R 236 of 255 = 93%
G 230 of 255 = 90%
B 252 of 255 = 99%
R + G + B ~ 94%. #ECE6FC is light color.
R + G + B =
236 + 230 + 252 = 718 (100%)
R 236 of 718 ~ 32.87%
G 230 of 718 ~ 32.03%
B 252 of 718 ~ 35.1%
#ECE6FC color CMYK value is (6,9,0,1).
CMYK: (6,9,0,1) C6M9Y0K1 (6%,9%,0%,1%) (0.06/0.09/0.00/0.01)
EC | E6 | FC | |
---|---|---|---|
RGB | 236 | 230 | 252 |
HSL | 256° | 78.57% | 94.51% |
HSB/HSV | 256° | 8.73% | 98.82% |
CMYK | 6.35% | 8.73% | 0.00% |
1.18% |
HEX | EC | E6 | FC |
Decimal | 236 | 230 | 252 |
Binary | 11101100 | 11100110 | 11111100 |
Octal | 354 | 346 | 374 |
Examples of css and html codes for elements with #ECE6FC color. Also use rgb(236,230,252) instead hex code.
.myTextColor { color: #ECE6FC; }
<p style="color:#ECE6FC">This sample text font color is #ECE6FC.</p>
This text font color is #ECE6FC.
.myBgColor { background-color: #ECE6FC; }
<div style="background-color:#ECE6FC">Inner text</div>
This div background color is #ECE6FC.
.myBorderColor { border: 1px solid #ECE6FC; }
<div style="border:3px solid #ECE6FC">Div</div>
This div border color is #ECE6FC.
.myOpacity80 { color: #ECE6FC; opacity: 0.8; }
<p style="color:#ECE6FC;opacity:0.8;">80%</p>
Text with #ECE6FC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECE6FC;}
<p style="text-shadow: 3px 3px 1px #ECE6FC">Text here.</p>
This text has shadow with #ECE6FC color.
.textShadow {text-shadow: 3px 3px 1px #ECE6FC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECE6FC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECE6FC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECE6FC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECE6FC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECE6FC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECE6FC; -webkit-box-shadow: 1px 1px 3px 2px #ECE6FC; box-shadow: 1px 1px 3px 2px #ECE6FC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECE6FC; -webkit-box-shadow: 1px 1px 3px 2px #ECE6FC; box-shadow:1px 1px 3px 2px #ECE6FC;">
Div content here</div>
This text has color #ECE6FC on black background.
This text has color #ECE6FC on white background.
This text has black color on #ECE6FC background.
This text has white color on #ECE6FC background.