HEX: #E1375C
RGB: (225,55,92)
#E1375C contains mainly red color. Web safe color of #E1375C is #CC3366 (or #C36).
#E1375C color RGB value is (225,55,92).
RGB: (225,55,92) (88%,22%,36%)
R 225 of 255 = 88%
G 55 of 255 = 22%
B 92 of 255 = 36%
R + G + B ~ 49%. #E1375C is middle color (not dark and not light).
R + G + B =
225 + 55 + 92 = 372 (100%)
R 225 of 372 ~ 60.48%
G 55 of 372 ~ 14.78%
B 92 of 372 ~ 24.73%
#E1375C color CMYK value is (0,76,59,12).
CMYK: (0,76,59,12) C0M76Y59K12 (0%,76%,59%,12%) (0.00/0.76/0.59/0.12)
E1 | 37 | 5C | |
---|---|---|---|
RGB | 225 | 55 | 92 |
HSL | 347° | 73.91% | 54.90% |
HSB/HSV | 347° | 75.56% | 88.24% |
CMYK | 0.00% | 75.56% | 59.11% |
11.76% |
HEX | E1 | 37 | 5C |
Decimal | 225 | 55 | 92 |
Binary | 11100001 | 110111 | 1011100 |
Octal | 341 | 67 | 134 |
Examples of css and html codes for elements with #E1375C color. Also use rgb(225,55,92) instead hex code.
.myTextColor { color: #E1375C; }
<p style="color:#E1375C">This sample text font color is #E1375C.</p>
This text font color is #E1375C.
.myBgColor { background-color: #E1375C; }
<div style="background-color:#E1375C">Inner text</div>
This div background color is #E1375C.
.myBorderColor { border: 1px solid #E1375C; }
<div style="border:3px solid #E1375C">Div</div>
This div border color is #E1375C.
.myOpacity80 { color: #E1375C; opacity: 0.8; }
<p style="color:#E1375C;opacity:0.8;">80%</p>
Text with #E1375C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1375C;}
<p style="text-shadow: 3px 3px 1px #E1375C">Text here.</p>
This text has shadow with #E1375C color.
.textShadow {text-shadow: 3px 3px 1px #E1375C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1375C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1375C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1375C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1375C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1375C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1375C; -webkit-box-shadow: 1px 1px 3px 2px #E1375C; box-shadow: 1px 1px 3px 2px #E1375C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1375C; -webkit-box-shadow: 1px 1px 3px 2px #E1375C; box-shadow:1px 1px 3px 2px #E1375C;">
Div content here</div>
This text has color #E1375C on black background.
This text has color #E1375C on white background.
This text has black color on #E1375C background.
This text has white color on #E1375C background.