HEX: #EC63AE
RGB: (236,99,174)
#EC63AE contains mainly red color. Web safe color of #EC63AE is #FF6699 (or #F69).
#EC63AE color RGB value is (236,99,174).
RGB: (236,99,174) (93%,39%,68%)
R 236 of 255 = 93%
G 99 of 255 = 39%
B 174 of 255 = 68%
R + G + B ~ 67%. #EC63AE is quite light color.
R + G + B =
236 + 99 + 174 = 509 (100%)
R 236 of 509 ~ 46.37%
G 99 of 509 ~ 19.45%
B 174 of 509 ~ 34.18%
#EC63AE color CMYK value is (0,58,26,7).
CMYK: (0,58,26,7) C0M58Y26K7 (0%,58%,26%,7%) (0.00/0.58/0.26/0.07)
EC | 63 | AE | |
---|---|---|---|
RGB | 236 | 99 | 174 |
HSL | 327° | 78.29% | 65.69% |
HSB/HSV | 327° | 58.05% | 92.55% |
CMYK | 0.00% | 58.05% | 26.27% |
7.45% |
HEX | EC | 63 | AE |
Decimal | 236 | 99 | 174 |
Binary | 11101100 | 1100011 | 10101110 |
Octal | 354 | 143 | 256 |
Examples of css and html codes for elements with #EC63AE color. Also use rgb(236,99,174) instead hex code.
.myTextColor { color: #EC63AE; }
<p style="color:#EC63AE">This sample text font color is #EC63AE.</p>
This text font color is #EC63AE.
.myBgColor { background-color: #EC63AE; }
<div style="background-color:#EC63AE">Inner text</div>
This div background color is #EC63AE.
.myBorderColor { border: 1px solid #EC63AE; }
<div style="border:3px solid #EC63AE">Div</div>
This div border color is #EC63AE.
.myOpacity80 { color: #EC63AE; opacity: 0.8; }
<p style="color:#EC63AE;opacity:0.8;">80%</p>
Text with #EC63AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC63AE;}
<p style="text-shadow: 3px 3px 1px #EC63AE">Text here.</p>
This text has shadow with #EC63AE color.
.textShadow {text-shadow: 3px 3px 1px #EC63AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC63AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC63AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC63AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC63AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC63AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC63AE; -webkit-box-shadow: 1px 1px 3px 2px #EC63AE; box-shadow: 1px 1px 3px 2px #EC63AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC63AE; -webkit-box-shadow: 1px 1px 3px 2px #EC63AE; box-shadow:1px 1px 3px 2px #EC63AE;">
Div content here</div>
This text has color #EC63AE on black background.
This text has color #EC63AE on white background.
This text has black color on #EC63AE background.
This text has white color on #EC63AE background.