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