HEX: #EEC3EA
RGB: (238,195,234)
#EEC3EA contains red, green and blue colors in about the same proportion. Web safe color of #EEC3EA is #FFCCFF (or #FCF).
#EEC3EA color RGB value is (238,195,234).
RGB: (238,195,234) (93%,76%,92%)
R 238 of 255 = 93%
G 195 of 255 = 76%
B 234 of 255 = 92%
R + G + B ~ 87%. #EEC3EA is light color.
R + G + B =
238 + 195 + 234 = 667 (100%)
R 238 of 667 ~ 35.68%
G 195 of 667 ~ 29.24%
B 234 of 667 ~ 35.08%
#EEC3EA color CMYK value is (0,18,2,7).
CMYK: (0,18,2,7) C0M18Y2K7 (0%,18%,2%,7%) (0.00/0.18/0.02/0.07)
EE | C3 | EA | |
---|---|---|---|
RGB | 238 | 195 | 234 |
HSL | 306° | 55.84% | 84.90% |
HSB/HSV | 306° | 18.07% | 93.33% |
CMYK | 0.00% | 18.07% | 1.68% |
6.67% |
HEX | EE | C3 | EA |
Decimal | 238 | 195 | 234 |
Binary | 11101110 | 11000011 | 11101010 |
Octal | 356 | 303 | 352 |
Examples of css and html codes for elements with #EEC3EA color. Also use rgb(238,195,234) instead hex code.
.myTextColor { color: #EEC3EA; }
<p style="color:#EEC3EA">This sample text font color is #EEC3EA.</p>
This text font color is #EEC3EA.
.myBgColor { background-color: #EEC3EA; }
<div style="background-color:#EEC3EA">Inner text</div>
This div background color is #EEC3EA.
.myBorderColor { border: 1px solid #EEC3EA; }
<div style="border:3px solid #EEC3EA">Div</div>
This div border color is #EEC3EA.
.myOpacity80 { color: #EEC3EA; opacity: 0.8; }
<p style="color:#EEC3EA;opacity:0.8;">80%</p>
Text with #EEC3EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEC3EA;}
<p style="text-shadow: 3px 3px 1px #EEC3EA">Text here.</p>
This text has shadow with #EEC3EA color.
.textShadow {text-shadow: 3px 3px 1px #EEC3EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEC3EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEC3EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEC3EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEC3EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEC3EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEC3EA; -webkit-box-shadow: 1px 1px 3px 2px #EEC3EA; box-shadow: 1px 1px 3px 2px #EEC3EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEC3EA; -webkit-box-shadow: 1px 1px 3px 2px #EEC3EA; box-shadow:1px 1px 3px 2px #EEC3EA;">
Div content here</div>
This text has color #EEC3EA on black background.
This text has color #EEC3EA on white background.
This text has black color on #EEC3EA background.
This text has white color on #EEC3EA background.