HEX: #E093BE
RGB: (224,147,190)
#E093BE contains mainly red and blue colors. Web safe color of #E093BE is #CC99CC (or #C9C).
#E093BE color RGB value is (224,147,190).
RGB: (224,147,190) (88%,58%,75%)
R 224 of 255 = 88%
G 147 of 255 = 58%
B 190 of 255 = 75%
R + G + B ~ 74%. #E093BE is quite light color.
R + G + B =
224 + 147 + 190 = 561 (100%)
R 224 of 561 ~ 39.93%
G 147 of 561 ~ 26.2%
B 190 of 561 ~ 33.87%
#E093BE color CMYK value is (0,34,15,12).
CMYK: (0,34,15,12) C0M34Y15K12 (0%,34%,15%,12%) (0.00/0.34/0.15/0.12)
E0 | 93 | BE | |
---|---|---|---|
RGB | 224 | 147 | 190 |
HSL | 326° | 55.40% | 72.75% |
HSB/HSV | 326° | 34.38% | 87.84% |
CMYK | 0.00% | 34.38% | 15.18% |
12.16% |
HEX | E0 | 93 | BE |
Decimal | 224 | 147 | 190 |
Binary | 11100000 | 10010011 | 10111110 |
Octal | 340 | 223 | 276 |
Examples of css and html codes for elements with #E093BE color. Also use rgb(224,147,190) instead hex code.
.myTextColor { color: #E093BE; }
<p style="color:#E093BE">This sample text font color is #E093BE.</p>
This text font color is #E093BE.
.myBgColor { background-color: #E093BE; }
<div style="background-color:#E093BE">Inner text</div>
This div background color is #E093BE.
.myBorderColor { border: 1px solid #E093BE; }
<div style="border:3px solid #E093BE">Div</div>
This div border color is #E093BE.
.myOpacity80 { color: #E093BE; opacity: 0.8; }
<p style="color:#E093BE;opacity:0.8;">80%</p>
Text with #E093BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E093BE;}
<p style="text-shadow: 3px 3px 1px #E093BE">Text here.</p>
This text has shadow with #E093BE color.
.textShadow {text-shadow: 3px 3px 1px #E093BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E093BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #E093BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E093BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E093BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #E093BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E093BE; -webkit-box-shadow: 1px 1px 3px 2px #E093BE; box-shadow: 1px 1px 3px 2px #E093BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E093BE; -webkit-box-shadow: 1px 1px 3px 2px #E093BE; box-shadow:1px 1px 3px 2px #E093BE;">
Div content here</div>
This text has color #E093BE on black background.
This text has color #E093BE on white background.
This text has black color on #E093BE background.
This text has white color on #E093BE background.