HEX: #E6504E
RGB: (230,80,78)
#E6504E contains mainly red color. Web safe color of #E6504E is #CC6666 (or #C66).
#E6504E color RGB value is (230,80,78).
RGB: (230,80,78) (90%,31%,31%)
R 230 of 255 = 90%
G 80 of 255 = 31%
B 78 of 255 = 31%
R + G + B ~ 51%. #E6504E is middle color (not dark and not light).
R + G + B =
230 + 80 + 78 = 388 (100%)
R 230 of 388 ~ 59.28%
G 80 of 388 ~ 20.62%
B 78 of 388 ~ 20.1%
#E6504E color CMYK value is (0,65,66,10).
CMYK: (0,65,66,10) C0M65Y66K10 (0%,65%,66%,10%) (0.00/0.65/0.66/0.10)
E6 | 50 | 4E | |
---|---|---|---|
RGB | 230 | 80 | 78 |
HSL | 1° | 75.25% | 60.39% |
HSB/HSV | 1° | 66.09% | 90.20% |
CMYK | 0.00% | 65.22% | 66.09% |
9.80% |
HEX | E6 | 50 | 4E |
Decimal | 230 | 80 | 78 |
Binary | 11100110 | 1010000 | 1001110 |
Octal | 346 | 120 | 116 |
Examples of css and html codes for elements with #E6504E color. Also use rgb(230,80,78) instead hex code.
.myTextColor { color: #E6504E; }
<p style="color:#E6504E">This sample text font color is #E6504E.</p>
This text font color is #E6504E.
.myBgColor { background-color: #E6504E; }
<div style="background-color:#E6504E">Inner text</div>
This div background color is #E6504E.
.myBorderColor { border: 1px solid #E6504E; }
<div style="border:3px solid #E6504E">Div</div>
This div border color is #E6504E.
.myOpacity80 { color: #E6504E; opacity: 0.8; }
<p style="color:#E6504E;opacity:0.8;">80%</p>
Text with #E6504E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6504E;}
<p style="text-shadow: 3px 3px 1px #E6504E">Text here.</p>
This text has shadow with #E6504E color.
.textShadow {text-shadow: 3px 3px 1px #E6504E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6504E, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6504E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6504E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6504E, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6504E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6504E; -webkit-box-shadow: 1px 1px 3px 2px #E6504E; box-shadow: 1px 1px 3px 2px #E6504E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6504E; -webkit-box-shadow: 1px 1px 3px 2px #E6504E; box-shadow:1px 1px 3px 2px #E6504E;">
Div content here</div>
This text has color #E6504E on black background.
This text has color #E6504E on white background.
This text has black color on #E6504E background.
This text has white color on #E6504E background.