HEX: #EDE0FB
RGB: (237,224,251)
#EDE0FB contains red, green and blue colors in about the same proportion. Web safe color of #EDE0FB is #FFCCFF (or #FCF).
#EDE0FB color RGB value is (237,224,251).
RGB: (237,224,251) (93%,88%,98%)
R 237 of 255 = 93%
G 224 of 255 = 88%
B 251 of 255 = 98%
R + G + B ~ 93%. #EDE0FB is light color.
R + G + B =
237 + 224 + 251 = 712 (100%)
R 237 of 712 ~ 33.29%
G 224 of 712 ~ 31.46%
B 251 of 712 ~ 35.25%
#EDE0FB color CMYK value is (6,11,0,2).
CMYK: (6,11,0,2) C6M11Y0K2 (6%,11%,0%,2%) (0.06/0.11/0.00/0.02)
ED | E0 | FB | |
---|---|---|---|
RGB | 237 | 224 | 251 |
HSL | 269° | 77.14% | 93.14% |
HSB/HSV | 269° | 10.76% | 98.43% |
CMYK | 5.58% | 10.76% | 0.00% |
1.57% |
HEX | ED | E0 | FB |
Decimal | 237 | 224 | 251 |
Binary | 11101101 | 11100000 | 11111011 |
Octal | 355 | 340 | 373 |
Examples of css and html codes for elements with #EDE0FB color. Also use rgb(237,224,251) instead hex code.
.myTextColor { color: #EDE0FB; }
<p style="color:#EDE0FB">This sample text font color is #EDE0FB.</p>
This text font color is #EDE0FB.
.myBgColor { background-color: #EDE0FB; }
<div style="background-color:#EDE0FB">Inner text</div>
This div background color is #EDE0FB.
.myBorderColor { border: 1px solid #EDE0FB; }
<div style="border:3px solid #EDE0FB">Div</div>
This div border color is #EDE0FB.
.myOpacity80 { color: #EDE0FB; opacity: 0.8; }
<p style="color:#EDE0FB;opacity:0.8;">80%</p>
Text with #EDE0FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE0FB;}
<p style="text-shadow: 3px 3px 1px #EDE0FB">Text here.</p>
This text has shadow with #EDE0FB color.
.textShadow {text-shadow: 3px 3px 1px #EDE0FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE0FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE0FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE0FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE0FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE0FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE0FB; -webkit-box-shadow: 1px 1px 3px 2px #EDE0FB; box-shadow: 1px 1px 3px 2px #EDE0FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE0FB; -webkit-box-shadow: 1px 1px 3px 2px #EDE0FB; box-shadow:1px 1px 3px 2px #EDE0FB;">
Div content here</div>
This text has color #EDE0FB on black background.
This text has color #EDE0FB on white background.
This text has black color on #EDE0FB background.
This text has white color on #EDE0FB background.