HEX: #E491BE
RGB: (228,145,190)
#E491BE contains mainly red and blue colors. Web safe color of #E491BE is #CC99CC (or #C9C).
#E491BE color RGB value is (228,145,190).
RGB: (228,145,190) (89%,57%,75%)
R 228 of 255 = 89%
G 145 of 255 = 57%
B 190 of 255 = 75%
R + G + B ~ 74%. #E491BE is quite light color.
R + G + B =
228 + 145 + 190 = 563 (100%)
R 228 of 563 ~ 40.5%
G 145 of 563 ~ 25.75%
B 190 of 563 ~ 33.75%
#E491BE color CMYK value is (0,36,17,11).
CMYK: (0,36,17,11) C0M36Y17K11 (0%,36%,17%,11%) (0.00/0.36/0.17/0.11)
E4 | 91 | BE | |
---|---|---|---|
RGB | 228 | 145 | 190 |
HSL | 327° | 60.58% | 73.14% |
HSB/HSV | 327° | 36.40% | 89.41% |
CMYK | 0.00% | 36.40% | 16.67% |
10.59% |
HEX | E4 | 91 | BE |
Decimal | 228 | 145 | 190 |
Binary | 11100100 | 10010001 | 10111110 |
Octal | 344 | 221 | 276 |
Examples of css and html codes for elements with #E491BE color. Also use rgb(228,145,190) instead hex code.
.myTextColor { color: #E491BE; }
<p style="color:#E491BE">This sample text font color is #E491BE.</p>
This text font color is #E491BE.
.myBgColor { background-color: #E491BE; }
<div style="background-color:#E491BE">Inner text</div>
This div background color is #E491BE.
.myBorderColor { border: 1px solid #E491BE; }
<div style="border:3px solid #E491BE">Div</div>
This div border color is #E491BE.
.myOpacity80 { color: #E491BE; opacity: 0.8; }
<p style="color:#E491BE;opacity:0.8;">80%</p>
Text with #E491BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E491BE;}
<p style="text-shadow: 3px 3px 1px #E491BE">Text here.</p>
This text has shadow with #E491BE color.
.textShadow {text-shadow: 3px 3px 1px #E491BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E491BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E491BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E491BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E491BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E491BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E491BE; -webkit-box-shadow: 1px 1px 3px 2px #E491BE; box-shadow: 1px 1px 3px 2px #E491BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E491BE; -webkit-box-shadow: 1px 1px 3px 2px #E491BE; box-shadow:1px 1px 3px 2px #E491BE;">
Div content here</div>
This text has color #E491BE on black background.
This text has color #E491BE on white background.
This text has black color on #E491BE background.
This text has white color on #E491BE background.