HEX: #E10000
RGB: (225,0,0)
#E10000 contains only red color. Web safe color of #E10000 is #CC0000 (or #C00).
#E10000 color RGB value is (225,0,0).
RGB: (225,0,0) (88%,0%,0%)
R 225 of 255 = 88%
G 0 of 255 = 0%
B 0 of 255 = 0%
R + G + B ~ 29%. #E10000 is quite dark color.
R + G + B =
225 + 0 + 0 = 225 (100%)
R 225 of 225 ~ 100%
G 0 of 225 ~ 0%
B 0 of 225 ~ 0%
#E10000 color CMYK value is (0,100,100,12).
CMYK: (0,100,100,12) C0M100Y100K12 (0%,100%,100%,12%) (0.00/1.00/1.00/0.12)
E1 | 00 | 00 | |
---|---|---|---|
RGB | 225 | 0 | 0 |
HSL | 0° | 100.00% | 44.12% |
HSB/HSV | 0° | 100.00% | 88.24% |
CMYK | 0.00% | 100.00% | 100.00% |
11.76% |
HEX | E1 | 00 | 00 |
Decimal | 225 | 0 | 0 |
Binary | 11100001 | 0 | 0 |
Octal | 341 | 0 | 0 |
Examples of css and html codes for elements with #E10000 color. Also use rgb(225,0,0) instead hex code.
.myTextColor { color: #E10000; }
<p style="color:#E10000">This sample text font color is #E10000.</p>
This text font color is #E10000.
.myBgColor { background-color: #E10000; }
<div style="background-color:#E10000">Inner text</div>
This div background color is #E10000.
.myBorderColor { border: 1px solid #E10000; }
<div style="border:3px solid #E10000">Div</div>
This div border color is #E10000.
.myOpacity80 { color: #E10000; opacity: 0.8; }
<p style="color:#E10000;opacity:0.8;">80%</p>
Text with #E10000 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E10000;}
<p style="text-shadow: 3px 3px 1px #E10000">Text here.</p>
This text has shadow with #E10000 color.
.textShadow {text-shadow: 3px 3px 1px #E10000, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E10000, 5px 5px 20px red">Text here.</p>
This text has shadow with #E10000 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E10000, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E10000, Direction=45, Strength=4)">Text</p>
This text has shadow with #E10000 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E10000; -webkit-box-shadow: 1px 1px 3px 2px #E10000; box-shadow: 1px 1px 3px 2px #E10000; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E10000; -webkit-box-shadow: 1px 1px 3px 2px #E10000; box-shadow:1px 1px 3px 2px #E10000;">
Div content here</div>
This text has color #E10000 on black background.
This text has color #E10000 on white background.
This text has black color on #E10000 background.
This text has white color on #E10000 background.