HEX: #E12480
RGB: (225,36,128)
#E12480 contains mainly red color. Web safe color of #E12480 is #CC3366 (or #C36).
#E12480 color RGB value is (225,36,128).
RGB: (225,36,128) (88%,14%,50%)
R 225 of 255 = 88%
G 36 of 255 = 14%
B 128 of 255 = 50%
R + G + B ~ 51%. #E12480 is middle color (not dark and not light).
R + G + B =
225 + 36 + 128 = 389 (100%)
R 225 of 389 ~ 57.84%
G 36 of 389 ~ 9.25%
B 128 of 389 ~ 32.9%
#E12480 color CMYK value is (0,84,43,12).
CMYK: (0,84,43,12) C0M84Y43K12 (0%,84%,43%,12%) (0.00/0.84/0.43/0.12)
E1 | 24 | 80 | |
---|---|---|---|
RGB | 225 | 36 | 128 |
HSL | 331° | 75.90% | 51.18% |
HSB/HSV | 331° | 84.00% | 88.24% |
CMYK | 0.00% | 84.00% | 43.11% |
11.76% |
HEX | E1 | 24 | 80 |
Decimal | 225 | 36 | 128 |
Binary | 11100001 | 100100 | 10000000 |
Octal | 341 | 44 | 200 |
Examples of css and html codes for elements with #E12480 color. Also use rgb(225,36,128) instead hex code.
.myTextColor { color: #E12480; }
<p style="color:#E12480">This sample text font color is #E12480.</p>
This text font color is #E12480.
.myBgColor { background-color: #E12480; }
<div style="background-color:#E12480">Inner text</div>
This div background color is #E12480.
.myBorderColor { border: 1px solid #E12480; }
<div style="border:3px solid #E12480">Div</div>
This div border color is #E12480.
.myOpacity80 { color: #E12480; opacity: 0.8; }
<p style="color:#E12480;opacity:0.8;">80%</p>
Text with #E12480 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E12480;}
<p style="text-shadow: 3px 3px 1px #E12480">Text here.</p>
This text has shadow with #E12480 color.
.textShadow {text-shadow: 3px 3px 1px #E12480, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E12480, 5px 5px 20px red">Text here.</p>
This text has shadow with #E12480 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E12480, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E12480, Direction=45, Strength=4)">Text</p>
This text has shadow with #E12480 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E12480; -webkit-box-shadow: 1px 1px 3px 2px #E12480; box-shadow: 1px 1px 3px 2px #E12480; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E12480; -webkit-box-shadow: 1px 1px 3px 2px #E12480; box-shadow:1px 1px 3px 2px #E12480;">
Div content here</div>
This text has color #E12480 on black background.
This text has color #E12480 on white background.
This text has black color on #E12480 background.
This text has white color on #E12480 background.