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