HEX: #EDDBEF
RGB: (237,219,239)
#EDDBEF contains red, green and blue colors in about the same proportion. Web safe color of #EDDBEF is #FFCCFF (or #FCF).
#EDDBEF color RGB value is (237,219,239).
RGB: (237,219,239) (93%,86%,94%)
R 237 of 255 = 93%
G 219 of 255 = 86%
B 239 of 255 = 94%
R + G + B ~ 91%. #EDDBEF is light color.
R + G + B =
237 + 219 + 239 = 695 (100%)
R 237 of 695 ~ 34.1%
G 219 of 695 ~ 31.51%
B 239 of 695 ~ 34.39%
#EDDBEF color CMYK value is (1,8,0,6).
CMYK: (1,8,0,6) C1M8Y0K6 (1%,8%,0%,6%) (0.01/0.08/0.00/0.06)
ED | DB | EF | |
---|---|---|---|
RGB | 237 | 219 | 239 |
HSL | 294° | 38.46% | 89.80% |
HSB/HSV | 294° | 8.37% | 93.73% |
CMYK | 0.84% | 8.37% | 0.00% |
6.27% |
HEX | ED | DB | EF |
Decimal | 237 | 219 | 239 |
Binary | 11101101 | 11011011 | 11101111 |
Octal | 355 | 333 | 357 |
Examples of css and html codes for elements with #EDDBEF color. Also use rgb(237,219,239) instead hex code.
.myTextColor { color: #EDDBEF; }
<p style="color:#EDDBEF">This sample text font color is #EDDBEF.</p>
This text font color is #EDDBEF.
.myBgColor { background-color: #EDDBEF; }
<div style="background-color:#EDDBEF">Inner text</div>
This div background color is #EDDBEF.
.myBorderColor { border: 1px solid #EDDBEF; }
<div style="border:3px solid #EDDBEF">Div</div>
This div border color is #EDDBEF.
.myOpacity80 { color: #EDDBEF; opacity: 0.8; }
<p style="color:#EDDBEF;opacity:0.8;">80%</p>
Text with #EDDBEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDBEF;}
<p style="text-shadow: 3px 3px 1px #EDDBEF">Text here.</p>
This text has shadow with #EDDBEF color.
.textShadow {text-shadow: 3px 3px 1px #EDDBEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDBEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDBEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDBEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDBEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDBEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDBEF; -webkit-box-shadow: 1px 1px 3px 2px #EDDBEF; box-shadow: 1px 1px 3px 2px #EDDBEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDBEF; -webkit-box-shadow: 1px 1px 3px 2px #EDDBEF; box-shadow:1px 1px 3px 2px #EDDBEF;">
Div content here</div>
This text has color #EDDBEF on black background.
This text has color #EDDBEF on white background.
This text has black color on #EDDBEF background.
This text has white color on #EDDBEF background.