HEX: #ED83CE
RGB: (237,131,206)
#ED83CE contains mainly red and blue colors. Web safe color of #ED83CE is #FF99CC (or #F9C).
#ED83CE color RGB value is (237,131,206).
RGB: (237,131,206) (93%,51%,81%)
R 237 of 255 = 93%
G 131 of 255 = 51%
B 206 of 255 = 81%
R + G + B ~ 75%. #ED83CE is quite light color.
R + G + B =
237 + 131 + 206 = 574 (100%)
R 237 of 574 ~ 41.29%
G 131 of 574 ~ 22.82%
B 206 of 574 ~ 35.89%
#ED83CE color CMYK value is (0,45,13,7).
CMYK: (0,45,13,7) C0M45Y13K7 (0%,45%,13%,7%) (0.00/0.45/0.13/0.07)
ED | 83 | CE | |
---|---|---|---|
RGB | 237 | 131 | 206 |
HSL | 318° | 74.65% | 72.16% |
HSB/HSV | 318° | 44.73% | 92.94% |
CMYK | 0.00% | 44.73% | 13.08% |
7.06% |
HEX | ED | 83 | CE |
Decimal | 237 | 131 | 206 |
Binary | 11101101 | 10000011 | 11001110 |
Octal | 355 | 203 | 316 |
Examples of css and html codes for elements with #ED83CE color. Also use rgb(237,131,206) instead hex code.
.myTextColor { color: #ED83CE; }
<p style="color:#ED83CE">This sample text font color is #ED83CE.</p>
This text font color is #ED83CE.
.myBgColor { background-color: #ED83CE; }
<div style="background-color:#ED83CE">Inner text</div>
This div background color is #ED83CE.
.myBorderColor { border: 1px solid #ED83CE; }
<div style="border:3px solid #ED83CE">Div</div>
This div border color is #ED83CE.
.myOpacity80 { color: #ED83CE; opacity: 0.8; }
<p style="color:#ED83CE;opacity:0.8;">80%</p>
Text with #ED83CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED83CE;}
<p style="text-shadow: 3px 3px 1px #ED83CE">Text here.</p>
This text has shadow with #ED83CE color.
.textShadow {text-shadow: 3px 3px 1px #ED83CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED83CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED83CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED83CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED83CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED83CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED83CE; -webkit-box-shadow: 1px 1px 3px 2px #ED83CE; box-shadow: 1px 1px 3px 2px #ED83CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED83CE; -webkit-box-shadow: 1px 1px 3px 2px #ED83CE; box-shadow:1px 1px 3px 2px #ED83CE;">
Div content here</div>
This text has color #ED83CE on black background.
This text has color #ED83CE on white background.
This text has black color on #ED83CE background.
This text has white color on #ED83CE background.