HEX: #E66D9D
RGB: (230,109,157)
#E66D9D contains mainly red color. Web safe color of #E66D9D is #CC6699 (or #C69).
#E66D9D color RGB value is (230,109,157).
RGB: (230,109,157) (90%,43%,62%)
R 230 of 255 = 90%
G 109 of 255 = 43%
B 157 of 255 = 62%
R + G + B ~ 65%. #E66D9D is quite light color.
R + G + B =
230 + 109 + 157 = 496 (100%)
R 230 of 496 ~ 46.37%
G 109 of 496 ~ 21.98%
B 157 of 496 ~ 31.65%
#E66D9D color CMYK value is (0,53,32,10).
CMYK: (0,53,32,10) C0M53Y32K10 (0%,53%,32%,10%) (0.00/0.53/0.32/0.10)
E6 | 6D | 9D | |
---|---|---|---|
RGB | 230 | 109 | 157 |
HSL | 336° | 70.76% | 66.47% |
HSB/HSV | 336° | 52.61% | 90.20% |
CMYK | 0.00% | 52.61% | 31.74% |
9.80% |
HEX | E6 | 6D | 9D |
Decimal | 230 | 109 | 157 |
Binary | 11100110 | 1101101 | 10011101 |
Octal | 346 | 155 | 235 |
Examples of css and html codes for elements with #E66D9D color. Also use rgb(230,109,157) instead hex code.
.myTextColor { color: #E66D9D; }
<p style="color:#E66D9D">This sample text font color is #E66D9D.</p>
This text font color is #E66D9D.
.myBgColor { background-color: #E66D9D; }
<div style="background-color:#E66D9D">Inner text</div>
This div background color is #E66D9D.
.myBorderColor { border: 1px solid #E66D9D; }
<div style="border:3px solid #E66D9D">Div</div>
This div border color is #E66D9D.
.myOpacity80 { color: #E66D9D; opacity: 0.8; }
<p style="color:#E66D9D;opacity:0.8;">80%</p>
Text with #E66D9D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E66D9D;}
<p style="text-shadow: 3px 3px 1px #E66D9D">Text here.</p>
This text has shadow with #E66D9D color.
.textShadow {text-shadow: 3px 3px 1px #E66D9D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E66D9D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E66D9D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E66D9D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E66D9D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E66D9D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E66D9D; -webkit-box-shadow: 1px 1px 3px 2px #E66D9D; box-shadow: 1px 1px 3px 2px #E66D9D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E66D9D; -webkit-box-shadow: 1px 1px 3px 2px #E66D9D; box-shadow:1px 1px 3px 2px #E66D9D;">
Div content here</div>
This text has color #E66D9D on black background.
This text has color #E66D9D on white background.
This text has black color on #E66D9D background.
This text has white color on #E66D9D background.