HEX: #E19FCC
RGB: (225,159,204)
#E19FCC contains mainly red and blue colors. Web safe color of #E19FCC is #CC99CC (or #C9C).
#E19FCC color RGB value is (225,159,204).
RGB: (225,159,204) (88%,62%,80%)
R 225 of 255 = 88%
G 159 of 255 = 62%
B 204 of 255 = 80%
R + G + B ~ 77%. #E19FCC is quite light color.
R + G + B =
225 + 159 + 204 = 588 (100%)
R 225 of 588 ~ 38.27%
G 159 of 588 ~ 27.04%
B 204 of 588 ~ 34.69%
#E19FCC color CMYK value is (0,29,9,12).
CMYK: (0,29,9,12) C0M29Y9K12 (0%,29%,9%,12%) (0.00/0.29/0.09/0.12)
E1 | 9F | CC | |
---|---|---|---|
RGB | 225 | 159 | 204 |
HSL | 319° | 52.38% | 75.29% |
HSB/HSV | 319° | 29.33% | 88.24% |
CMYK | 0.00% | 29.33% | 9.33% |
11.76% |
HEX | E1 | 9F | CC |
Decimal | 225 | 159 | 204 |
Binary | 11100001 | 10011111 | 11001100 |
Octal | 341 | 237 | 314 |
Examples of css and html codes for elements with #E19FCC color. Also use rgb(225,159,204) instead hex code.
.myTextColor { color: #E19FCC; }
<p style="color:#E19FCC">This sample text font color is #E19FCC.</p>
This text font color is #E19FCC.
.myBgColor { background-color: #E19FCC; }
<div style="background-color:#E19FCC">Inner text</div>
This div background color is #E19FCC.
.myBorderColor { border: 1px solid #E19FCC; }
<div style="border:3px solid #E19FCC">Div</div>
This div border color is #E19FCC.
.myOpacity80 { color: #E19FCC; opacity: 0.8; }
<p style="color:#E19FCC;opacity:0.8;">80%</p>
Text with #E19FCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E19FCC;}
<p style="text-shadow: 3px 3px 1px #E19FCC">Text here.</p>
This text has shadow with #E19FCC color.
.textShadow {text-shadow: 3px 3px 1px #E19FCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E19FCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E19FCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E19FCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E19FCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E19FCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E19FCC; -webkit-box-shadow: 1px 1px 3px 2px #E19FCC; box-shadow: 1px 1px 3px 2px #E19FCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E19FCC; -webkit-box-shadow: 1px 1px 3px 2px #E19FCC; box-shadow:1px 1px 3px 2px #E19FCC;">
Div content here</div>
This text has color #E19FCC on black background.
This text has color #E19FCC on white background.
This text has black color on #E19FCC background.
This text has white color on #E19FCC background.