HEX: #E1516B
RGB: (225,81,107)
#E1516B contains mainly red color. Web safe color of #E1516B is #CC6666 (or #C66).
#E1516B color RGB value is (225,81,107).
RGB: (225,81,107) (88%,32%,42%)
R 225 of 255 = 88%
G 81 of 255 = 32%
B 107 of 255 = 42%
R + G + B ~ 54%. #E1516B is middle color (not dark and not light).
R + G + B =
225 + 81 + 107 = 413 (100%)
R 225 of 413 ~ 54.48%
G 81 of 413 ~ 19.61%
B 107 of 413 ~ 25.91%
#E1516B color CMYK value is (0,64,52,12).
CMYK: (0,64,52,12) C0M64Y52K12 (0%,64%,52%,12%) (0.00/0.64/0.52/0.12)
E1 | 51 | 6B | |
---|---|---|---|
RGB | 225 | 81 | 107 |
HSL | 349° | 70.59% | 60.00% |
HSB/HSV | 349° | 64.00% | 88.24% |
CMYK | 0.00% | 64.00% | 52.44% |
11.76% |
HEX | E1 | 51 | 6B |
Decimal | 225 | 81 | 107 |
Binary | 11100001 | 1010001 | 1101011 |
Octal | 341 | 121 | 153 |
Examples of css and html codes for elements with #E1516B color. Also use rgb(225,81,107) instead hex code.
.myTextColor { color: #E1516B; }
<p style="color:#E1516B">This sample text font color is #E1516B.</p>
This text font color is #E1516B.
.myBgColor { background-color: #E1516B; }
<div style="background-color:#E1516B">Inner text</div>
This div background color is #E1516B.
.myBorderColor { border: 1px solid #E1516B; }
<div style="border:3px solid #E1516B">Div</div>
This div border color is #E1516B.
.myOpacity80 { color: #E1516B; opacity: 0.8; }
<p style="color:#E1516B;opacity:0.8;">80%</p>
Text with #E1516B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1516B;}
<p style="text-shadow: 3px 3px 1px #E1516B">Text here.</p>
This text has shadow with #E1516B color.
.textShadow {text-shadow: 3px 3px 1px #E1516B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1516B, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1516B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1516B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1516B, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1516B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1516B; -webkit-box-shadow: 1px 1px 3px 2px #E1516B; box-shadow: 1px 1px 3px 2px #E1516B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1516B; -webkit-box-shadow: 1px 1px 3px 2px #E1516B; box-shadow:1px 1px 3px 2px #E1516B;">
Div content here</div>
This text has color #E1516B on black background.
This text has color #E1516B on white background.
This text has black color on #E1516B background.
This text has white color on #E1516B background.