HEX: #EDCAEE
RGB: (237,202,238)
#EDCAEE contains red, green and blue colors in about the same proportion. Web safe color of #EDCAEE is #FFCCFF (or #FCF).
#EDCAEE color RGB value is (237,202,238).
RGB: (237,202,238) (93%,79%,93%)
R 237 of 255 = 93%
G 202 of 255 = 79%
B 238 of 255 = 93%
R + G + B ~ 88%. #EDCAEE is light color.
R + G + B =
237 + 202 + 238 = 677 (100%)
R 237 of 677 ~ 35.01%
G 202 of 677 ~ 29.84%
B 238 of 677 ~ 35.16%
#EDCAEE color CMYK value is (0,15,0,7).
CMYK: (0,15,0,7) C0M15Y0K7 (0%,15%,0%,7%) (0.00/0.15/0.00/0.07)
ED | CA | EE | |
---|---|---|---|
RGB | 237 | 202 | 238 |
HSL | 298° | 51.43% | 86.27% |
HSB/HSV | 298° | 15.13% | 93.33% |
CMYK | 0.42% | 15.13% | 0.00% |
6.67% |
HEX | ED | CA | EE |
Decimal | 237 | 202 | 238 |
Binary | 11101101 | 11001010 | 11101110 |
Octal | 355 | 312 | 356 |
Examples of css and html codes for elements with #EDCAEE color. Also use rgb(237,202,238) instead hex code.
.myTextColor { color: #EDCAEE; }
<p style="color:#EDCAEE">This sample text font color is #EDCAEE.</p>
This text font color is #EDCAEE.
.myBgColor { background-color: #EDCAEE; }
<div style="background-color:#EDCAEE">Inner text</div>
This div background color is #EDCAEE.
.myBorderColor { border: 1px solid #EDCAEE; }
<div style="border:3px solid #EDCAEE">Div</div>
This div border color is #EDCAEE.
.myOpacity80 { color: #EDCAEE; opacity: 0.8; }
<p style="color:#EDCAEE;opacity:0.8;">80%</p>
Text with #EDCAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCAEE;}
<p style="text-shadow: 3px 3px 1px #EDCAEE">Text here.</p>
This text has shadow with #EDCAEE color.
.textShadow {text-shadow: 3px 3px 1px #EDCAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCAEE; -webkit-box-shadow: 1px 1px 3px 2px #EDCAEE; box-shadow: 1px 1px 3px 2px #EDCAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCAEE; -webkit-box-shadow: 1px 1px 3px 2px #EDCAEE; box-shadow:1px 1px 3px 2px #EDCAEE;">
Div content here</div>
This text has color #EDCAEE on black background.
This text has color #EDCAEE on white background.
This text has black color on #EDCAEE background.
This text has white color on #EDCAEE background.