HEX: #EEDBE6
RGB: (238,219,230)
#EEDBE6 contains red, green and blue colors in about the same proportion. Web safe color of #EEDBE6 is #FFCCCC (or #FCC).
#EEDBE6 color RGB value is (238,219,230).
RGB: (238,219,230) (93%,86%,90%)
R 238 of 255 = 93%
G 219 of 255 = 86%
B 230 of 255 = 90%
R + G + B ~ 90%. #EEDBE6 is light color.
R + G + B =
238 + 219 + 230 = 687 (100%)
R 238 of 687 ~ 34.64%
G 219 of 687 ~ 31.88%
B 230 of 687 ~ 33.48%
#EEDBE6 color CMYK value is (0,8,3,7).
CMYK: (0,8,3,7) C0M8Y3K7 (0%,8%,3%,7%) (0.00/0.08/0.03/0.07)
EE | DB | E6 | |
---|---|---|---|
RGB | 238 | 219 | 230 |
HSL | 325° | 35.85% | 89.61% |
HSB/HSV | 325° | 7.98% | 93.33% |
CMYK | 0.00% | 7.98% | 3.36% |
6.67% |
HEX | EE | DB | E6 |
Decimal | 238 | 219 | 230 |
Binary | 11101110 | 11011011 | 11100110 |
Octal | 356 | 333 | 346 |
Examples of css and html codes for elements with #EEDBE6 color. Also use rgb(238,219,230) instead hex code.
.myTextColor { color: #EEDBE6; }
<p style="color:#EEDBE6">This sample text font color is #EEDBE6.</p>
This text font color is #EEDBE6.
.myBgColor { background-color: #EEDBE6; }
<div style="background-color:#EEDBE6">Inner text</div>
This div background color is #EEDBE6.
.myBorderColor { border: 1px solid #EEDBE6; }
<div style="border:3px solid #EEDBE6">Div</div>
This div border color is #EEDBE6.
.myOpacity80 { color: #EEDBE6; opacity: 0.8; }
<p style="color:#EEDBE6;opacity:0.8;">80%</p>
Text with #EEDBE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDBE6;}
<p style="text-shadow: 3px 3px 1px #EEDBE6">Text here.</p>
This text has shadow with #EEDBE6 color.
.textShadow {text-shadow: 3px 3px 1px #EEDBE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDBE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDBE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDBE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDBE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDBE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDBE6; -webkit-box-shadow: 1px 1px 3px 2px #EEDBE6; box-shadow: 1px 1px 3px 2px #EEDBE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDBE6; -webkit-box-shadow: 1px 1px 3px 2px #EEDBE6; box-shadow:1px 1px 3px 2px #EEDBE6;">
Div content here</div>
This text has color #EEDBE6 on black background.
This text has color #EEDBE6 on white background.
This text has black color on #EEDBE6 background.
This text has white color on #EEDBE6 background.