HEX: #EBCCEA
RGB: (235,204,234)
#EBCCEA contains red, green and blue colors in about the same proportion. Web safe color of #EBCCEA is #FFCCFF (or #FCF).
#EBCCEA color RGB value is (235,204,234).
RGB: (235,204,234) (92%,80%,92%)
R 235 of 255 = 92%
G 204 of 255 = 80%
B 234 of 255 = 92%
R + G + B ~ 88%. #EBCCEA is light color.
R + G + B =
235 + 204 + 234 = 673 (100%)
R 235 of 673 ~ 34.92%
G 204 of 673 ~ 30.31%
B 234 of 673 ~ 34.77%
#EBCCEA color CMYK value is (0,13,0,8).
CMYK: (0,13,0,8) C0M13Y0K8 (0%,13%,0%,8%) (0.00/0.13/0.00/0.08)
EB | CC | EA | |
---|---|---|---|
RGB | 235 | 204 | 234 |
HSL | 302° | 43.66% | 86.08% |
HSB/HSV | 302° | 13.19% | 92.16% |
CMYK | 0.00% | 13.19% | 0.43% |
7.84% |
HEX | EB | CC | EA |
Decimal | 235 | 204 | 234 |
Binary | 11101011 | 11001100 | 11101010 |
Octal | 353 | 314 | 352 |
Examples of css and html codes for elements with #EBCCEA color. Also use rgb(235,204,234) instead hex code.
.myTextColor { color: #EBCCEA; }
<p style="color:#EBCCEA">This sample text font color is #EBCCEA.</p>
This text font color is #EBCCEA.
.myBgColor { background-color: #EBCCEA; }
<div style="background-color:#EBCCEA">Inner text</div>
This div background color is #EBCCEA.
.myBorderColor { border: 1px solid #EBCCEA; }
<div style="border:3px solid #EBCCEA">Div</div>
This div border color is #EBCCEA.
.myOpacity80 { color: #EBCCEA; opacity: 0.8; }
<p style="color:#EBCCEA;opacity:0.8;">80%</p>
Text with #EBCCEA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBCCEA;}
<p style="text-shadow: 3px 3px 1px #EBCCEA">Text here.</p>
This text has shadow with #EBCCEA color.
.textShadow {text-shadow: 3px 3px 1px #EBCCEA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBCCEA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBCCEA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBCCEA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBCCEA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBCCEA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBCCEA; -webkit-box-shadow: 1px 1px 3px 2px #EBCCEA; box-shadow: 1px 1px 3px 2px #EBCCEA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBCCEA; -webkit-box-shadow: 1px 1px 3px 2px #EBCCEA; box-shadow:1px 1px 3px 2px #EBCCEA;">
Div content here</div>
This text has color #EBCCEA on black background.
This text has color #EBCCEA on white background.
This text has black color on #EBCCEA background.
This text has white color on #EBCCEA background.