HEX: #EE83DE
RGB: (238,131,222)
#EE83DE contains mainly red and blue colors. Web safe color of #EE83DE is #FF99CC (or #F9C).
#EE83DE color RGB value is (238,131,222).
RGB: (238,131,222) (93%,51%,87%)
R 238 of 255 = 93%
G 131 of 255 = 51%
B 222 of 255 = 87%
R + G + B ~ 77%. #EE83DE is quite light color.
R + G + B =
238 + 131 + 222 = 591 (100%)
R 238 of 591 ~ 40.27%
G 131 of 591 ~ 22.17%
B 222 of 591 ~ 37.56%
#EE83DE color CMYK value is (0,45,7,7).
CMYK: (0,45,7,7) C0M45Y7K7 (0%,45%,7%,7%) (0.00/0.45/0.07/0.07)
EE | 83 | DE | |
---|---|---|---|
RGB | 238 | 131 | 222 |
HSL | 309° | 75.89% | 72.35% |
HSB/HSV | 309° | 44.96% | 93.33% |
CMYK | 0.00% | 44.96% | 6.72% |
6.67% |
HEX | EE | 83 | DE |
Decimal | 238 | 131 | 222 |
Binary | 11101110 | 10000011 | 11011110 |
Octal | 356 | 203 | 336 |
Examples of css and html codes for elements with #EE83DE color. Also use rgb(238,131,222) instead hex code.
.myTextColor { color: #EE83DE; }
<p style="color:#EE83DE">This sample text font color is #EE83DE.</p>
This text font color is #EE83DE.
.myBgColor { background-color: #EE83DE; }
<div style="background-color:#EE83DE">Inner text</div>
This div background color is #EE83DE.
.myBorderColor { border: 1px solid #EE83DE; }
<div style="border:3px solid #EE83DE">Div</div>
This div border color is #EE83DE.
.myOpacity80 { color: #EE83DE; opacity: 0.8; }
<p style="color:#EE83DE;opacity:0.8;">80%</p>
Text with #EE83DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE83DE;}
<p style="text-shadow: 3px 3px 1px #EE83DE">Text here.</p>
This text has shadow with #EE83DE color.
.textShadow {text-shadow: 3px 3px 1px #EE83DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE83DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE83DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE83DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE83DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE83DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE83DE; -webkit-box-shadow: 1px 1px 3px 2px #EE83DE; box-shadow: 1px 1px 3px 2px #EE83DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE83DE; -webkit-box-shadow: 1px 1px 3px 2px #EE83DE; box-shadow:1px 1px 3px 2px #EE83DE;">
Div content here</div>
This text has color #EE83DE on black background.
This text has color #EE83DE on white background.
This text has black color on #EE83DE background.
This text has white color on #EE83DE background.