HEX: #EDCAE2
RGB: (237,202,226)
#EDCAE2 contains red, green and blue colors in about the same proportion. Web safe color of #EDCAE2 is #FFCCCC (or #FCC).
#EDCAE2 color RGB value is (237,202,226).
RGB: (237,202,226) (93%,79%,89%)
R 237 of 255 = 93%
G 202 of 255 = 79%
B 226 of 255 = 89%
R + G + B ~ 87%. #EDCAE2 is light color.
R + G + B =
237 + 202 + 226 = 665 (100%)
R 237 of 665 ~ 35.64%
G 202 of 665 ~ 30.38%
B 226 of 665 ~ 33.98%
#EDCAE2 color CMYK value is (0,15,5,7).
CMYK: (0,15,5,7) C0M15Y5K7 (0%,15%,5%,7%) (0.00/0.15/0.05/0.07)
ED | CA | E2 | |
---|---|---|---|
RGB | 237 | 202 | 226 |
HSL | 319° | 49.30% | 86.08% |
HSB/HSV | 319° | 14.77% | 92.94% |
CMYK | 0.00% | 14.77% | 4.64% |
7.06% |
HEX | ED | CA | E2 |
Decimal | 237 | 202 | 226 |
Binary | 11101101 | 11001010 | 11100010 |
Octal | 355 | 312 | 342 |
Examples of css and html codes for elements with #EDCAE2 color. Also use rgb(237,202,226) instead hex code.
.myTextColor { color: #EDCAE2; }
<p style="color:#EDCAE2">This sample text font color is #EDCAE2.</p>
This text font color is #EDCAE2.
.myBgColor { background-color: #EDCAE2; }
<div style="background-color:#EDCAE2">Inner text</div>
This div background color is #EDCAE2.
.myBorderColor { border: 1px solid #EDCAE2; }
<div style="border:3px solid #EDCAE2">Div</div>
This div border color is #EDCAE2.
.myOpacity80 { color: #EDCAE2; opacity: 0.8; }
<p style="color:#EDCAE2;opacity:0.8;">80%</p>
Text with #EDCAE2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCAE2;}
<p style="text-shadow: 3px 3px 1px #EDCAE2">Text here.</p>
This text has shadow with #EDCAE2 color.
.textShadow {text-shadow: 3px 3px 1px #EDCAE2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCAE2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCAE2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCAE2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCAE2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCAE2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCAE2; -webkit-box-shadow: 1px 1px 3px 2px #EDCAE2; box-shadow: 1px 1px 3px 2px #EDCAE2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCAE2; -webkit-box-shadow: 1px 1px 3px 2px #EDCAE2; box-shadow:1px 1px 3px 2px #EDCAE2;">
Div content here</div>
This text has color #EDCAE2 on black background.
This text has color #EDCAE2 on white background.
This text has black color on #EDCAE2 background.
This text has white color on #EDCAE2 background.