HEX: #ECA6DA
RGB: (236,166,218)
#ECA6DA contains mainly red and blue colors. Web safe color of #ECA6DA is #FF99CC (or #F9C).
#ECA6DA color RGB value is (236,166,218).
RGB: (236,166,218) (93%,65%,85%)
R 236 of 255 = 93%
G 166 of 255 = 65%
B 218 of 255 = 85%
R + G + B ~ 81%. #ECA6DA is quite light color.
R + G + B =
236 + 166 + 218 = 620 (100%)
R 236 of 620 ~ 38.06%
G 166 of 620 ~ 26.77%
B 218 of 620 ~ 35.16%
#ECA6DA color CMYK value is (0,30,8,7).
CMYK: (0,30,8,7) C0M30Y8K7 (0%,30%,8%,7%) (0.00/0.30/0.08/0.07)
EC | A6 | DA | |
---|---|---|---|
RGB | 236 | 166 | 218 |
HSL | 315° | 64.81% | 78.82% |
HSB/HSV | 315° | 29.66% | 92.55% |
CMYK | 0.00% | 29.66% | 7.63% |
7.45% |
HEX | EC | A6 | DA |
Decimal | 236 | 166 | 218 |
Binary | 11101100 | 10100110 | 11011010 |
Octal | 354 | 246 | 332 |
Examples of css and html codes for elements with #ECA6DA color. Also use rgb(236,166,218) instead hex code.
.myTextColor { color: #ECA6DA; }
<p style="color:#ECA6DA">This sample text font color is #ECA6DA.</p>
This text font color is #ECA6DA.
.myBgColor { background-color: #ECA6DA; }
<div style="background-color:#ECA6DA">Inner text</div>
This div background color is #ECA6DA.
.myBorderColor { border: 1px solid #ECA6DA; }
<div style="border:3px solid #ECA6DA">Div</div>
This div border color is #ECA6DA.
.myOpacity80 { color: #ECA6DA; opacity: 0.8; }
<p style="color:#ECA6DA;opacity:0.8;">80%</p>
Text with #ECA6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ECA6DA;}
<p style="text-shadow: 3px 3px 1px #ECA6DA">Text here.</p>
This text has shadow with #ECA6DA color.
.textShadow {text-shadow: 3px 3px 1px #ECA6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ECA6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ECA6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ECA6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ECA6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ECA6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ECA6DA; -webkit-box-shadow: 1px 1px 3px 2px #ECA6DA; box-shadow: 1px 1px 3px 2px #ECA6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ECA6DA; -webkit-box-shadow: 1px 1px 3px 2px #ECA6DA; box-shadow:1px 1px 3px 2px #ECA6DA;">
Div content here</div>
This text has color #ECA6DA on black background.
This text has color #ECA6DA on white background.
This text has black color on #ECA6DA background.
This text has white color on #ECA6DA background.