HEX: #EF1715
RGB: (239,23,21)
#EF1715 contains mainly red color. Web safe color of #EF1715 is #FF0000 (or #F00).
#EF1715 color RGB value is (239,23,21).
RGB: (239,23,21) (94%,9%,8%)
R 239 of 255 = 94%
G 23 of 255 = 9%
B 21 of 255 = 8%
R + G + B ~ 37%. #EF1715 is quite dark color.
R + G + B =
239 + 23 + 21 = 283 (100%)
R 239 of 283 ~ 84.45%
G 23 of 283 ~ 8.13%
B 21 of 283 ~ 7.42%
#EF1715 color CMYK value is (0,90,91,6).
CMYK: (0,90,91,6) C0M90Y91K6 (0%,90%,91%,6%) (0.00/0.90/0.91/0.06)
EF | 17 | 15 | |
---|---|---|---|
RGB | 239 | 23 | 21 |
HSL | 1° | 87.20% | 50.98% |
HSB/HSV | 1° | 91.21% | 93.73% |
CMYK | 0.00% | 90.38% | 91.21% |
6.27% |
HEX | EF | 17 | 15 |
Decimal | 239 | 23 | 21 |
Binary | 11101111 | 10111 | 10101 |
Octal | 357 | 27 | 25 |
Examples of css and html codes for elements with #EF1715 color. Also use rgb(239,23,21) instead hex code.
.myTextColor { color: #EF1715; }
<p style="color:#EF1715">This sample text font color is #EF1715.</p>
This text font color is #EF1715.
.myBgColor { background-color: #EF1715; }
<div style="background-color:#EF1715">Inner text</div>
This div background color is #EF1715.
.myBorderColor { border: 1px solid #EF1715; }
<div style="border:3px solid #EF1715">Div</div>
This div border color is #EF1715.
.myOpacity80 { color: #EF1715; opacity: 0.8; }
<p style="color:#EF1715;opacity:0.8;">80%</p>
Text with #EF1715 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EF1715;}
<p style="text-shadow: 3px 3px 1px #EF1715">Text here.</p>
This text has shadow with #EF1715 color.
.textShadow {text-shadow: 3px 3px 1px #EF1715, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EF1715, 5px 5px 20px red">Text here.</p>
This text has shadow with #EF1715 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EF1715, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EF1715, Direction=45, Strength=4)">Text</p>
This text has shadow with #EF1715 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EF1715; -webkit-box-shadow: 1px 1px 3px 2px #EF1715; box-shadow: 1px 1px 3px 2px #EF1715; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EF1715; -webkit-box-shadow: 1px 1px 3px 2px #EF1715; box-shadow:1px 1px 3px 2px #EF1715;">
Div content here</div>
This text has color #EF1715 on black background.
This text has color #EF1715 on white background.
This text has black color on #EF1715 background.
This text has white color on #EF1715 background.