HEX: #E12594
RGB: (225,37,148)
#E12594 contains mainly red color. Web safe color of #E12594 is #CC3399 (or #C39).
#E12594 color RGB value is (225,37,148).
RGB: (225,37,148) (88%,15%,58%)
R 225 of 255 = 88%
G 37 of 255 = 15%
B 148 of 255 = 58%
R + G + B ~ 54%. #E12594 is middle color (not dark and not light).
R + G + B =
225 + 37 + 148 = 410 (100%)
R 225 of 410 ~ 54.88%
G 37 of 410 ~ 9.02%
B 148 of 410 ~ 36.1%
#E12594 color CMYK value is (0,84,34,12).
CMYK: (0,84,34,12) C0M84Y34K12 (0%,84%,34%,12%) (0.00/0.84/0.34/0.12)
E1 | 25 | 94 | |
---|---|---|---|
RGB | 225 | 37 | 148 |
HSL | 325° | 75.81% | 51.37% |
HSB/HSV | 325° | 83.56% | 88.24% |
CMYK | 0.00% | 83.56% | 34.22% |
11.76% |
HEX | E1 | 25 | 94 |
Decimal | 225 | 37 | 148 |
Binary | 11100001 | 100101 | 10010100 |
Octal | 341 | 45 | 224 |
Examples of css and html codes for elements with #E12594 color. Also use rgb(225,37,148) instead hex code.
.myTextColor { color: #E12594; }
<p style="color:#E12594">This sample text font color is #E12594.</p>
This text font color is #E12594.
.myBgColor { background-color: #E12594; }
<div style="background-color:#E12594">Inner text</div>
This div background color is #E12594.
.myBorderColor { border: 1px solid #E12594; }
<div style="border:3px solid #E12594">Div</div>
This div border color is #E12594.
.myOpacity80 { color: #E12594; opacity: 0.8; }
<p style="color:#E12594;opacity:0.8;">80%</p>
Text with #E12594 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E12594;}
<p style="text-shadow: 3px 3px 1px #E12594">Text here.</p>
This text has shadow with #E12594 color.
.textShadow {text-shadow: 3px 3px 1px #E12594, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E12594, 5px 5px 20px red">Text here.</p>
This text has shadow with #E12594 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E12594, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E12594, Direction=45, Strength=4)">Text</p>
This text has shadow with #E12594 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E12594; -webkit-box-shadow: 1px 1px 3px 2px #E12594; box-shadow: 1px 1px 3px 2px #E12594; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E12594; -webkit-box-shadow: 1px 1px 3px 2px #E12594; box-shadow:1px 1px 3px 2px #E12594;">
Div content here</div>
This text has color #E12594 on black background.
This text has color #E12594 on white background.
This text has black color on #E12594 background.
This text has white color on #E12594 background.