HEX: #E999C4
RGB: (233,153,196)
#E999C4 contains mainly red and blue colors. Web safe color of #E999C4 is #FF99CC (or #F9C).
#E999C4 color RGB value is (233,153,196).
RGB: (233,153,196) (91%,60%,77%)
R 233 of 255 = 91%
G 153 of 255 = 60%
B 196 of 255 = 77%
R + G + B ~ 76%. #E999C4 is quite light color.
R + G + B =
233 + 153 + 196 = 582 (100%)
R 233 of 582 ~ 40.03%
G 153 of 582 ~ 26.29%
B 196 of 582 ~ 33.68%
#E999C4 color CMYK value is (0,34,16,9).
CMYK: (0,34,16,9) C0M34Y16K9 (0%,34%,16%,9%) (0.00/0.34/0.16/0.09)
E9 | 99 | C4 | |
---|---|---|---|
RGB | 233 | 153 | 196 |
HSL | 328° | 64.52% | 75.69% |
HSB/HSV | 328° | 34.33% | 91.37% |
CMYK | 0.00% | 34.33% | 15.88% |
8.63% |
HEX | E9 | 99 | C4 |
Decimal | 233 | 153 | 196 |
Binary | 11101001 | 10011001 | 11000100 |
Octal | 351 | 231 | 304 |
Examples of css and html codes for elements with #E999C4 color. Also use rgb(233,153,196) instead hex code.
.myTextColor { color: #E999C4; }
<p style="color:#E999C4">This sample text font color is #E999C4.</p>
This text font color is #E999C4.
.myBgColor { background-color: #E999C4; }
<div style="background-color:#E999C4">Inner text</div>
This div background color is #E999C4.
.myBorderColor { border: 1px solid #E999C4; }
<div style="border:3px solid #E999C4">Div</div>
This div border color is #E999C4.
.myOpacity80 { color: #E999C4; opacity: 0.8; }
<p style="color:#E999C4;opacity:0.8;">80%</p>
Text with #E999C4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E999C4;}
<p style="text-shadow: 3px 3px 1px #E999C4">Text here.</p>
This text has shadow with #E999C4 color.
.textShadow {text-shadow: 3px 3px 1px #E999C4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E999C4, 5px 5px 20px red">Text here.</p>
This text has shadow with #E999C4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E999C4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E999C4, Direction=45, Strength=4)">Text</p>
This text has shadow with #E999C4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E999C4; -webkit-box-shadow: 1px 1px 3px 2px #E999C4; box-shadow: 1px 1px 3px 2px #E999C4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E999C4; -webkit-box-shadow: 1px 1px 3px 2px #E999C4; box-shadow:1px 1px 3px 2px #E999C4;">
Div content here</div>
This text has color #E999C4 on black background.
This text has color #E999C4 on white background.
This text has black color on #E999C4 background.
This text has white color on #E999C4 background.