HEX: #EDCAFF
RGB: (237,202,255)
#EDCAFF contains red, green and blue colors in about the same proportion. Web safe color of #EDCAFF is #FFCCFF (or #FCF).
#EDCAFF color RGB value is (237,202,255).
RGB: (237,202,255) (93%,79%,100%)
R 237 of 255 = 93%
G 202 of 255 = 79%
B 255 of 255 = 100%
R + G + B ~ 91%. #EDCAFF is light color.
R + G + B =
237 + 202 + 255 = 694 (100%)
R 237 of 694 ~ 34.15%
G 202 of 694 ~ 29.11%
B 255 of 694 ~ 36.74%
#EDCAFF color CMYK value is (7,21,0,0).
CMYK: (7,21,0,0) C7M21Y0K0 (7%,21%,0%,0%) (0.07/0.21/0.00/0.00)
ED | CA | FF | |
---|---|---|---|
RGB | 237 | 202 | 255 |
HSL | 280° | 100.00% | 89.61% |
HSB/HSV | 280° | 20.78% | 100.00% |
CMYK | 7.06% | 20.78% | 0.00% |
0.00% |
HEX | ED | CA | FF |
Decimal | 237 | 202 | 255 |
Binary | 11101101 | 11001010 | 11111111 |
Octal | 355 | 312 | 377 |
Examples of css and html codes for elements with #EDCAFF color. Also use rgb(237,202,255) instead hex code.
.myTextColor { color: #EDCAFF; }
<p style="color:#EDCAFF">This sample text font color is #EDCAFF.</p>
This text font color is #EDCAFF.
.myBgColor { background-color: #EDCAFF; }
<div style="background-color:#EDCAFF">Inner text</div>
This div background color is #EDCAFF.
.myBorderColor { border: 1px solid #EDCAFF; }
<div style="border:3px solid #EDCAFF">Div</div>
This div border color is #EDCAFF.
.myOpacity80 { color: #EDCAFF; opacity: 0.8; }
<p style="color:#EDCAFF;opacity:0.8;">80%</p>
Text with #EDCAFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCAFF;}
<p style="text-shadow: 3px 3px 1px #EDCAFF">Text here.</p>
This text has shadow with #EDCAFF color.
.textShadow {text-shadow: 3px 3px 1px #EDCAFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCAFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCAFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCAFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCAFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCAFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCAFF; -webkit-box-shadow: 1px 1px 3px 2px #EDCAFF; box-shadow: 1px 1px 3px 2px #EDCAFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCAFF; -webkit-box-shadow: 1px 1px 3px 2px #EDCAFF; box-shadow:1px 1px 3px 2px #EDCAFF;">
Div content here</div>
This text has color #EDCAFF on black background.
This text has color #EDCAFF on white background.
This text has black color on #EDCAFF background.
This text has white color on #EDCAFF background.