HEX: #EBC5EE
RGB: (235,197,238)
#EBC5EE contains red, green and blue colors in about the same proportion. Web safe color of #EBC5EE is #FFCCFF (or #FCF).
#EBC5EE color RGB value is (235,197,238).
RGB: (235,197,238) (92%,77%,93%)
R 235 of 255 = 92%
G 197 of 255 = 77%
B 238 of 255 = 93%
R + G + B ~ 87%. #EBC5EE is light color.
R + G + B =
235 + 197 + 238 = 670 (100%)
R 235 of 670 ~ 35.07%
G 197 of 670 ~ 29.4%
B 238 of 670 ~ 35.52%
#EBC5EE color CMYK value is (1,17,0,7).
CMYK: (1,17,0,7) C1M17Y0K7 (1%,17%,0%,7%) (0.01/0.17/0.00/0.07)
EB | C5 | EE | |
---|---|---|---|
RGB | 235 | 197 | 238 |
HSL | 296° | 54.67% | 85.29% |
HSB/HSV | 296° | 17.23% | 93.33% |
CMYK | 1.26% | 17.23% | 0.00% |
6.67% |
HEX | EB | C5 | EE |
Decimal | 235 | 197 | 238 |
Binary | 11101011 | 11000101 | 11101110 |
Octal | 353 | 305 | 356 |
Examples of css and html codes for elements with #EBC5EE color. Also use rgb(235,197,238) instead hex code.
.myTextColor { color: #EBC5EE; }
<p style="color:#EBC5EE">This sample text font color is #EBC5EE.</p>
This text font color is #EBC5EE.
.myBgColor { background-color: #EBC5EE; }
<div style="background-color:#EBC5EE">Inner text</div>
This div background color is #EBC5EE.
.myBorderColor { border: 1px solid #EBC5EE; }
<div style="border:3px solid #EBC5EE">Div</div>
This div border color is #EBC5EE.
.myOpacity80 { color: #EBC5EE; opacity: 0.8; }
<p style="color:#EBC5EE;opacity:0.8;">80%</p>
Text with #EBC5EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBC5EE;}
<p style="text-shadow: 3px 3px 1px #EBC5EE">Text here.</p>
This text has shadow with #EBC5EE color.
.textShadow {text-shadow: 3px 3px 1px #EBC5EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBC5EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBC5EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBC5EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBC5EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBC5EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBC5EE; -webkit-box-shadow: 1px 1px 3px 2px #EBC5EE; box-shadow: 1px 1px 3px 2px #EBC5EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBC5EE; -webkit-box-shadow: 1px 1px 3px 2px #EBC5EE; box-shadow:1px 1px 3px 2px #EBC5EE;">
Div content here</div>
This text has color #EBC5EE on black background.
This text has color #EBC5EE on white background.
This text has black color on #EBC5EE background.
This text has white color on #EBC5EE background.