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