HEX: #EEC9DF
RGB: (238,201,223)
#EEC9DF contains red, green and blue colors in about the same proportion. Web safe color of #EEC9DF is #FFCCCC (or #FCC).
#EEC9DF color RGB value is (238,201,223).
RGB: (238,201,223) (93%,79%,87%)
R 238 of 255 = 93%
G 201 of 255 = 79%
B 223 of 255 = 87%
R + G + B ~ 86%. #EEC9DF is light color.
R + G + B =
238 + 201 + 223 = 662 (100%)
R 238 of 662 ~ 35.95%
G 201 of 662 ~ 30.36%
B 223 of 662 ~ 33.69%
#EEC9DF color CMYK value is (0,16,6,7).
CMYK: (0,16,6,7) C0M16Y6K7 (0%,16%,6%,7%) (0.00/0.16/0.06/0.07)
EE | C9 | DF | |
---|---|---|---|
RGB | 238 | 201 | 223 |
HSL | 324° | 52.11% | 86.08% |
HSB/HSV | 324° | 15.55% | 93.33% |
CMYK | 0.00% | 15.55% | 6.30% |
6.67% |
HEX | EE | C9 | DF |
Decimal | 238 | 201 | 223 |
Binary | 11101110 | 11001001 | 11011111 |
Octal | 356 | 311 | 337 |
Examples of css and html codes for elements with #EEC9DF color. Also use rgb(238,201,223) instead hex code.
.myTextColor { color: #EEC9DF; }
<p style="color:#EEC9DF">This sample text font color is #EEC9DF.</p>
This text font color is #EEC9DF.
.myBgColor { background-color: #EEC9DF; }
<div style="background-color:#EEC9DF">Inner text</div>
This div background color is #EEC9DF.
.myBorderColor { border: 1px solid #EEC9DF; }
<div style="border:3px solid #EEC9DF">Div</div>
This div border color is #EEC9DF.
.myOpacity80 { color: #EEC9DF; opacity: 0.8; }
<p style="color:#EEC9DF;opacity:0.8;">80%</p>
Text with #EEC9DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEC9DF;}
<p style="text-shadow: 3px 3px 1px #EEC9DF">Text here.</p>
This text has shadow with #EEC9DF color.
.textShadow {text-shadow: 3px 3px 1px #EEC9DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEC9DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEC9DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEC9DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEC9DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEC9DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEC9DF; -webkit-box-shadow: 1px 1px 3px 2px #EEC9DF; box-shadow: 1px 1px 3px 2px #EEC9DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEC9DF; -webkit-box-shadow: 1px 1px 3px 2px #EEC9DF; box-shadow:1px 1px 3px 2px #EEC9DF;">
Div content here</div>
This text has color #EEC9DF on black background.
This text has color #EEC9DF on white background.
This text has black color on #EEC9DF background.
This text has white color on #EEC9DF background.