HEX: #E4C6CA
RGB: (228,198,202)
#E4C6CA contains red, green and blue colors in about the same proportion. Web safe color of #E4C6CA is #CCCCCC (or #CCC).
#E4C6CA color RGB value is (228,198,202).
RGB: (228,198,202) (89%,78%,79%)
R 228 of 255 = 89%
G 198 of 255 = 78%
B 202 of 255 = 79%
R + G + B ~ 82%. #E4C6CA is quite light color.
R + G + B =
228 + 198 + 202 = 628 (100%)
R 228 of 628 ~ 36.31%
G 198 of 628 ~ 31.53%
B 202 of 628 ~ 32.17%
#E4C6CA color CMYK value is (0,13,11,11).
CMYK: (0,13,11,11) C0M13Y11K11 (0%,13%,11%,11%) (0.00/0.13/0.11/0.11)
E4 | C6 | CA | |
---|---|---|---|
RGB | 228 | 198 | 202 |
HSL | 352° | 35.71% | 83.53% |
HSB/HSV | 352° | 13.16% | 89.41% |
CMYK | 0.00% | 13.16% | 11.40% |
10.59% |
HEX | E4 | C6 | CA |
Decimal | 228 | 198 | 202 |
Binary | 11100100 | 11000110 | 11001010 |
Octal | 344 | 306 | 312 |
Examples of css and html codes for elements with #E4C6CA color. Also use rgb(228,198,202) instead hex code.
.myTextColor { color: #E4C6CA; }
<p style="color:#E4C6CA">This sample text font color is #E4C6CA.</p>
This text font color is #E4C6CA.
.myBgColor { background-color: #E4C6CA; }
<div style="background-color:#E4C6CA">Inner text</div>
This div background color is #E4C6CA.
.myBorderColor { border: 1px solid #E4C6CA; }
<div style="border:3px solid #E4C6CA">Div</div>
This div border color is #E4C6CA.
.myOpacity80 { color: #E4C6CA; opacity: 0.8; }
<p style="color:#E4C6CA;opacity:0.8;">80%</p>
Text with #E4C6CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4C6CA;}
<p style="text-shadow: 3px 3px 1px #E4C6CA">Text here.</p>
This text has shadow with #E4C6CA color.
.textShadow {text-shadow: 3px 3px 1px #E4C6CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4C6CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4C6CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4C6CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4C6CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4C6CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4C6CA; -webkit-box-shadow: 1px 1px 3px 2px #E4C6CA; box-shadow: 1px 1px 3px 2px #E4C6CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4C6CA; -webkit-box-shadow: 1px 1px 3px 2px #E4C6CA; box-shadow:1px 1px 3px 2px #E4C6CA;">
Div content here</div>
This text has color #E4C6CA on black background.
This text has color #E4C6CA on white background.
This text has black color on #E4C6CA background.
This text has white color on #E4C6CA background.