HEX: #EBC0EA
RGB: (235,192,234)
#EBC0EA contains red, green and blue colors in about the same proportion. Web safe color of #EBC0EA is #FFCCFF (or #FCF).
#EBC0EA color RGB value is (235,192,234).
RGB: (235,192,234) (92%,75%,92%)
R 235 of 255 = 92%
G 192 of 255 = 75%
B 234 of 255 = 92%
R + G + B ~ 86%. #EBC0EA is light color.
R + G + B =
235 + 192 + 234 = 661 (100%)
R 235 of 661 ~ 35.55%
G 192 of 661 ~ 29.05%
B 234 of 661 ~ 35.4%
#EBC0EA color CMYK value is (0,18,0,8).
CMYK: (0,18,0,8) C0M18Y0K8 (0%,18%,0%,8%) (0.00/0.18/0.00/0.08)
EB | C0 | EA | |
---|---|---|---|
RGB | 235 | 192 | 234 |
HSL | 301° | 51.81% | 83.73% |
HSB/HSV | 301° | 18.30% | 92.16% |
CMYK | 0.00% | 18.30% | 0.43% |
7.84% |
HEX | EB | C0 | EA |
Decimal | 235 | 192 | 234 |
Binary | 11101011 | 11000000 | 11101010 |
Octal | 353 | 300 | 352 |
Examples of css and html codes for elements with #EBC0EA color. Also use rgb(235,192,234) instead hex code.
.myTextColor { color: #EBC0EA; }
<p style="color:#EBC0EA">This sample text font color is #EBC0EA.</p>
This text font color is #EBC0EA.
.myBgColor { background-color: #EBC0EA; }
<div style="background-color:#EBC0EA">Inner text</div>
This div background color is #EBC0EA.
.myBorderColor { border: 1px solid #EBC0EA; }
<div style="border:3px solid #EBC0EA">Div</div>
This div border color is #EBC0EA.
.myOpacity80 { color: #EBC0EA; opacity: 0.8; }
<p style="color:#EBC0EA;opacity:0.8;">80%</p>
Text with #EBC0EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBC0EA;}
<p style="text-shadow: 3px 3px 1px #EBC0EA">Text here.</p>
This text has shadow with #EBC0EA color.
.textShadow {text-shadow: 3px 3px 1px #EBC0EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBC0EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBC0EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBC0EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBC0EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBC0EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBC0EA; -webkit-box-shadow: 1px 1px 3px 2px #EBC0EA; box-shadow: 1px 1px 3px 2px #EBC0EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBC0EA; -webkit-box-shadow: 1px 1px 3px 2px #EBC0EA; box-shadow:1px 1px 3px 2px #EBC0EA;">
Div content here</div>
This text has color #EBC0EA on black background.
This text has color #EBC0EA on white background.
This text has black color on #EBC0EA background.
This text has white color on #EBC0EA background.