HEX: #EBCAD8
RGB: (235,202,216)
#EBCAD8 contains red, green and blue colors in about the same proportion. Web safe color of #EBCAD8 is #FFCCCC (or #FCC).
#EBCAD8 color RGB value is (235,202,216).
RGB: (235,202,216) (92%,79%,85%)
R 235 of 255 = 92%
G 202 of 255 = 79%
B 216 of 255 = 85%
R + G + B ~ 85%. #EBCAD8 is quite light color.
R + G + B =
235 + 202 + 216 = 653 (100%)
R 235 of 653 ~ 35.99%
G 202 of 653 ~ 30.93%
B 216 of 653 ~ 33.08%
#EBCAD8 color CMYK value is (0,14,8,8).
CMYK: (0,14,8,8) C0M14Y8K8 (0%,14%,8%,8%) (0.00/0.14/0.08/0.08)
EB | CA | D8 | |
---|---|---|---|
RGB | 235 | 202 | 216 |
HSL | 335° | 45.21% | 85.69% |
HSB/HSV | 335° | 14.04% | 92.16% |
CMYK | 0.00% | 14.04% | 8.09% |
7.84% |
HEX | EB | CA | D8 |
Decimal | 235 | 202 | 216 |
Binary | 11101011 | 11001010 | 11011000 |
Octal | 353 | 312 | 330 |
Examples of css and html codes for elements with #EBCAD8 color. Also use rgb(235,202,216) instead hex code.
.myTextColor { color: #EBCAD8; }
<p style="color:#EBCAD8">This sample text font color is #EBCAD8.</p>
This text font color is #EBCAD8.
.myBgColor { background-color: #EBCAD8; }
<div style="background-color:#EBCAD8">Inner text</div>
This div background color is #EBCAD8.
.myBorderColor { border: 1px solid #EBCAD8; }
<div style="border:3px solid #EBCAD8">Div</div>
This div border color is #EBCAD8.
.myOpacity80 { color: #EBCAD8; opacity: 0.8; }
<p style="color:#EBCAD8;opacity:0.8;">80%</p>
Text with #EBCAD8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBCAD8;}
<p style="text-shadow: 3px 3px 1px #EBCAD8">Text here.</p>
This text has shadow with #EBCAD8 color.
.textShadow {text-shadow: 3px 3px 1px #EBCAD8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBCAD8, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBCAD8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBCAD8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBCAD8, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBCAD8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBCAD8; -webkit-box-shadow: 1px 1px 3px 2px #EBCAD8; box-shadow: 1px 1px 3px 2px #EBCAD8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBCAD8; -webkit-box-shadow: 1px 1px 3px 2px #EBCAD8; box-shadow:1px 1px 3px 2px #EBCAD8;">
Div content here</div>
This text has color #EBCAD8 on black background.
This text has color #EBCAD8 on white background.
This text has black color on #EBCAD8 background.
This text has white color on #EBCAD8 background.